/* ============================================
   AGENTALK — Brand Design System
   Bold & Colorful | Green-first SaaS theme
   ============================================ */

/* ---- Google Font: Inter ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --at-primary:       #25D366;
  --at-primary-dark:  #1aad52;
  --at-primary-light: #d4f5e2;
  --at-brand-dark:    #0D2B16;
  --at-hero-bg:       #071810;
  --at-accent:        #A8FF78;
  --at-white:         #ffffff;
  --at-light:         #F0FBF4;
  --at-gray-50:       #F9FAFB;
  --at-gray-100:      #F3F4F6;
  --at-gray-300:      #D1D5DB;
  --at-gray-500:      #6B7280;
  --at-gray-700:      #374151;
  --at-text:          #111827;
  --at-radius:        12px;
  --at-radius-lg:     20px;
  --at-shadow:        0 4px 24px rgba(13,43,22,.10);
  --at-shadow-lg:     0 12px 48px rgba(13,43,22,.18);
  --at-gradient:      linear-gradient(135deg, #25D366 0%, #1aad52 100%);
  --at-gradient-hero: linear-gradient(160deg, #071810 0%, #0D2B16 60%, #103d1e 100%);
  --at-gradient-dark: linear-gradient(135deg, #0D2B16 0%, #071810 100%);
}

/* ---- Neutralise style.css absolute-header rules entirely ---- */
.tp-header__transparent { position: static !important; }
.tp-header__space.header-sticky,
.tp-header__space-2.header-sticky,
.tp-header__space-3.header-sticky { position: static !important; }

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; }

/* Prevent horizontal scroll.
   main.js line 115: $('body').delay(350).css({'overflow':'visible'}) resets overflow as inline style.
   !important in author stylesheet beats inline author styles per CSS Cascade spec. */
html { overflow-x: hidden !important; }
body {
  font-family: 'Inter', sans-serif !important;
  color: var(--at-text);
  background: var(--at-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  max-width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.at-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--at-primary-light);
  color: var(--at-primary-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.at-section-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--at-primary);
  border-radius: 50%;
}

.at-section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--at-text);
  margin-bottom: 16px;
}
.at-section-title span { color: var(--at-primary); }

.at-section-sub {
  font-size: 17px;
  color: var(--at-gray-500);
  line-height: 1.7;
  max-width: 600px;
}

/* Override old typography */
.tp-section-title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
}
.tp-section-title-sm {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.at-btn, .tp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--at-gradient) !important;
  color: var(--at-white) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 14px 28px !important;
  border-radius: 100px !important;
  border: none !important;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s, opacity .2s !important;
  box-shadow: 0 4px 20px rgba(37,211,102,.35) !important;
}
.at-btn:hover, .tp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.45) !important;
  color: var(--at-white) !important;
  opacity: .95;
}
.at-btn span, .tp-btn span { color: inherit !important; }

.at-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--at-white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.35);
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.at-btn-ghost:hover {
  border-color: var(--at-primary);
  color: var(--at-primary);
  background: rgba(37,211,102,.08);
}

.tp-btn-border {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: var(--at-primary) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 13px 28px !important;
  border-radius: 100px !important;
  border: 2px solid var(--at-primary) !important;
  cursor: pointer;
  text-decoration: none !important;
  transition: all .2s !important;
}
.tp-btn-border:hover {
  background: var(--at-gradient) !important;
  color: var(--at-white) !important;
  box-shadow: 0 4px 20px rgba(37,211,102,.35) !important;
}

/* ============================================
   NAVBAR / HEADER  (new .at-header system)
   ============================================ */
.at-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  border-bottom: 1px solid rgba(37,211,102,.15);
  box-shadow: 0 2px 20px rgba(13,43,22,.07);
  transition: box-shadow .3s;
}
.at-header.header-sticky {
  box-shadow: 0 4px 30px rgba(13,43,22,.12);
}
.at-header .container-fluid {
  padding-left: 40px !important;
  padding-right: 40px !important;
  max-width: 1440px;
  margin: 0 auto;
}
.at-header__row {
  min-height: 76px;
}

/* Logo */
.at-header__logo {
  display: flex;
  align-items: center;
  height: 76px;
}
.at-header__logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* Nav links */
.tp-header__main-menu nav > ul {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  justify-content: center !important;
}
.tp-header__main-menu nav ul li {
  position: relative;
  display: flex !important;
  align-items: center !important;
}
.tp-header__main-menu nav ul li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  color: var(--at-gray-700) !important;
  padding: 0 13px !important;
  height: 76px !important;
  display: flex !important;
  align-items: center !important;
  transition: color .2s !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
}
.tp-header__main-menu nav ul li a:hover,
.tp-header__main-menu nav ul li.active > a { color: var(--at-primary) !important; }
.tp-header__main-menu nav ul li::after { display: none !important; }

/* Right: CTA + hamburger */
.at-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 76px;
}
.at-header__signin {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--at-gray-700);
  text-decoration: none;
  padding: 8px 14px;
  transition: color .2s;
}
.at-header__signin:hover { color: var(--at-primary); }

/* Burger button — three-line style */
.at-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--at-primary-light);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
  flex-shrink: 0;
}
.at-header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--at-primary-dark);
  border-radius: 2px;
  transition: all .2s;
}
.at-header__burger:hover { background: var(--at-primary); }
.at-header__burger:hover span { background: #fff; }

/* Dashboard icon (mobile auth state) */
.at-header__dash-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--at-gradient);
  border-radius: 10px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: opacity .2s;
}
.at-header__dash-icon:hover { opacity: .85; color: white; }

/* CTA button in header */
.at-header__actions .tp-btn {
  font-size: 13px !important;
  padding: 10px 22px !important;
  white-space: nowrap;
}

/* ============================================
   HERO SECTION
   ============================================ */
.at-hero {
  background: var(--at-gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

/* Animated background blobs */
.at-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,211,102,.18) 0%, transparent 70%);
  top: -100px; left: -100px;
  border-radius: 50%;
  animation: blobFloat 8s ease-in-out infinite;
}
.at-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,255,120,.12) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  border-radius: 50%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-30px) scale(1.05); }
  66%       { transform: translate(-20px,20px) scale(.95); }
}

.at-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.3);
  color: var(--at-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.at-hero__tag span {
  width: 7px; height: 7px;
  background: var(--at-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.at-hero__title {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  color: var(--at-white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.at-hero__title .at-green { color: var(--at-primary); }
.at-hero__title .at-accent-text {
  background: linear-gradient(90deg, #25D366, #A8FF78);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.at-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.at-hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }
.at-hero__sub { max-width: 520px; }

.at-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.at-hero__stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--at-white);
}
.at-hero__stat-num span { color: var(--at-primary); }
.at-hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
  font-weight: 500;
}

.at-hero__image-wrap {
  position: relative;
  z-index: 2;
}
.at-hero__image-wrap img {
  width: 100%;
  border-radius: var(--at-radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(37,211,102,.15);
}
.at-hero__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(37,211,102,.2) 0%, transparent 70%);
  z-index: -1;
  border-radius: 30px;
}

/* Floating badge on hero image */
.at-hero__badge {
  position: absolute;
  background: var(--at-white);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  font-family: 'Inter', sans-serif;
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.at-hero__badge-icon {
  width: 36px; height: 36px;
  background: var(--at-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}
.at-hero__badge-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--at-text);
  line-height: 1.2;
}
.at-hero__badge-sub {
  font-size: 11px;
  color: var(--at-gray-500);
}
.at-hero__badge--left  { bottom: 40px; left: -30px; }
.at-hero__badge--right { top: 40px; right: -30px; }

/* Hide old hero */
.tp-hero__area { display: none !important; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.tp-feature__area {
  background: var(--at-white);
  padding: 100px 0 !important;
}
.tp-feature__section-box .tp-section-title {
  color: var(--at-text) !important;
  font-size: clamp(28px, 3.5vw, 44px) !important;
}

.at-feature-card {
  background: var(--at-white);
  border: 1.5px solid var(--at-gray-100);
  border-radius: var(--at-radius-lg);
  padding: 36px 30px;
  transition: all .25s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.at-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,211,102,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.at-feature-card:hover {
  border-color: var(--at-primary);
  box-shadow: var(--at-shadow-lg);
  transform: translateY(-4px);
}
.at-feature-card:hover::before { opacity: 1; }

.at-feature-card__icon {
  width: 56px; height: 56px;
  background: var(--at-primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--at-primary-dark);
  margin-bottom: 20px;
  transition: transform .25s ease, background .25s ease;
}
.at-feature-card__icon img {
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
}
.at-feature-card:hover .at-feature-card__icon {
  background: var(--at-primary-light);
  transform: scale(1.08);
}
.at-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--at-text);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.at-feature-card__desc {
  font-size: 14px;
  color: var(--at-gray-500);
  line-height: 1.7;
  margin: 0;
}

/* override old feature items */
.tp-feature__item { display: none !important; }

/* ============================================
   APP/ABOUT SECTION
   ============================================ */
.tp-app__area {
  background: var(--at-light) !important;
  padding: 100px 0 !important;
}
.tp-app__thumb img {
  border-radius: var(--at-radius-lg);
  box-shadow: var(--at-shadow-lg);
}
.tp-app__content .tp-section-title {
  color: var(--at-text) !important;
}
.tp-app__title-sm {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: var(--at-text) !important;
}

/* ============================================
   INTEGRATION SECTION
   ============================================ */
.at-integration {
  background: var(--at-gradient-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.at-integration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2325D366' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================
   PRICING SECTION
   ============================================ */
.tp-price__area {
  background: var(--at-gray-50) !important;
  padding: 100px 0 !important;
  border: none !important;
}
.tp-price__border { border: none !important; }

.tp-price__item {
  background: var(--at-white) !important;
  border-radius: var(--at-radius-lg) !important;
  padding: 40px 32px !important;
  border: 1.5px solid var(--at-gray-100) !important;
  transition: all .25s !important;
  position: relative;
  overflow: hidden;
}
.tp-price__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--at-gradient);
  opacity: 0;
  transition: opacity .25s;
}
.tp-price__item:hover {
  box-shadow: var(--at-shadow-lg) !important;
  transform: translateY(-4px);
  border-color: var(--at-primary) !important;
}
.tp-price__item:hover::before { opacity: 1; }

.tp-price__active {
  background: var(--at-gradient) !important;
  border-color: transparent !important;
  box-shadow: 0 16px 56px rgba(37,211,102,.4) !important;
  transform: translateY(-8px) scale(1.02);
}
.tp-price__active::before { opacity: 1 !important; background: rgba(255,255,255,.3) !important; }
.tp-price__active .tp-price__title,
.tp-price__active .tp-price__icon span,
.tp-price__active .tp-price__list ul li {
  color: var(--at-white) !important;
}
.tp-price__active .tp-btn-border {
  background: var(--at-white) !important;
  color: var(--at-primary-dark) !important;
  border-color: var(--at-white) !important;
}

.tp-price__title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 40px !important;
  color: var(--at-text) !important;
  margin: 16px 0 !important;
}
.tp-price__small_title {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--at-gray-500) !important;
}
.tp-price__active .tp-price__small_title { color: rgba(255,255,255,.7) !important; }

.tp-price__list ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.tp-price__list ul li {
  position: relative !important;
  padding: 11px 0 11px 34px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--at-gray-700) !important;
  border-bottom: 1px solid var(--at-gray-100) !important;
  font-family: 'Inter', sans-serif !important;
  display: block !important;
  line-height: 1.5 !important;
}
.tp-price__list ul li::before {
  content: '✓' !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--at-primary-light) !important;
  color: var(--at-primary-dark) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}
.tp-price__active .tp-price__list ul li {
  border-bottom-color: rgba(255,255,255,.15) !important;
  color: rgba(255,255,255,.9) !important;
}
.tp-price__active .tp-price__list ul li::before {
  background: rgba(255,255,255,.25) !important;
  color: white !important;
}

.tp-price__section .tp-section-title-sm {
  color: var(--at-text) !important;
}
.tp-price__section span {
  font-family: 'Inter', sans-serif;
  color: var(--at-gray-500) !important;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.tp-testimonial__area {
  background: var(--at-gradient-hero) !important;
  padding: 100px 0 !important;
}
.tp-testimonial__title-box .tp-section-title { color: var(--at-white) !important; }

.tp-testimonial__item {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: var(--at-radius-lg) !important;
  padding: 24px !important;
  transition: all .25s !important;
  backdrop-filter: blur(8px);
  gap: 16px !important;
}
.tp-testimonial__item:hover {
  background: rgba(37,211,102,.12) !important;
  border-color: rgba(37,211,102,.3) !important;
  transform: translateX(4px);
}
.tp-testimonial__icon span {
  width: 52px !important; height: 52px !important;
  border-radius: 50% !important;
  overflow: hidden;
  flex-shrink: 0;
}
.tp-testimonial__icon span img {
  width: 52px !important; height: 52px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}
.tp-testimonial__content p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: rgba(255,255,255,.75) !important;
  line-height: 1.7 !important;
  margin-bottom: 8px !important;
}
.tp-testimonial__title-sm {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--at-white) !important;
}
.tp-testimonial__title-sm span {
  color: var(--at-primary) !important;
  font-weight: 500 !important;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.tp-faq-area,
.at-faq-section {
  background: var(--at-white);
  padding: 100px 0;
}

.at-accordion .accordion-item {
  border: 1.5px solid var(--at-gray-100) !important;
  border-radius: var(--at-radius) !important;
  margin-bottom: 12px !important;
  overflow: hidden;
}
.at-accordion .accordion-button {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--at-text) !important;
  background: var(--at-white) !important;
  padding: 20px 24px !important;
  box-shadow: none !important;
}
.at-accordion .accordion-button:not(.collapsed) {
  color: var(--at-primary-dark) !important;
  background: var(--at-light) !important;
}
.at-accordion .accordion-button::after {
  filter: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2325D366' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}
.at-accordion .accordion-body {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: var(--at-gray-500) !important;
  padding: 0 24px 20px !important;
  line-height: 1.75 !important;
  background: var(--at-light) !important;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.at-why {
  background: var(--at-light);
  padding: 100px 0;
}
.at-why__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--at-white);
  border-radius: var(--at-radius-lg);
  border: 1.5px solid var(--at-gray-100);
  margin-bottom: 16px;
  transition: all .25s;
}
.at-why__item:hover {
  border-color: var(--at-primary);
  box-shadow: var(--at-shadow);
}
.at-why__icon {
  width: 48px; height: 48px;
  background: var(--at-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}
.at-why__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--at-text);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.at-why__desc {
  font-size: 14px;
  color: var(--at-gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer .tp-footer__area {
  background: var(--at-gradient-dark) !important;
  position: relative;
  overflow: hidden;
}
footer .tp-footer__area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%2325D366' fill-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
}
.tp-footer__content .tp-section-title {
  color: var(--at-white) !important;
  font-size: clamp(28px, 3vw, 44px) !important;
}
.tp-footer__content p {
  color: rgba(255,255,255,.6) !important;
  font-family: 'Inter', sans-serif !important;
}

.tp-footer-bottom__area {
  border-top: 1px solid rgba(255,255,255,.1) !important;
}
.tp-footer-bottom__menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.tp-footer-bottom__menu ul li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: rgba(255,255,255,.55) !important;
  text-decoration: none !important;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .2s !important;
}
.tp-footer-bottom__menu ul li a:hover {
  color: var(--at-primary) !important;
  background: rgba(37,211,102,.1);
}
.tp-footer-bottom__logo img {
  height: 36px !important;
  width: auto !important;
  filter: brightness(10) !important;
}

/* Language switch */
.language-switch {
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.7) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  width: auto !important;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  background: var(--at-gradient) !important;
  border: none !important;
  width: 44px !important; height: 44px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.4) !important;
}
.scroll-top i { color: white !important; }

/* ============================================
   SECTION SPACING HELPERS
   ============================================ */
.at-section { padding: 100px 0; }
.at-section-sm { padding: 60px 0; }

/* ============================================
   OFFCANVAS MOBILE MENU
   ============================================ */
.tpoffcanvas {
  background: var(--at-brand-dark) !important;
}
.tpoffcanvas .tp-btn { width: 100% !important; justify-content: center !important; }
.close-btn { color: var(--at-white) !important; font-size: 22px !important; }
.tpoffcanvas__info-icon a { color: var(--at-primary) !important; }
.tpoffcanvas__info-address span { color: rgba(255,255,255,.5) !important; }
.tpoffcanvas__info-address a { color: var(--at-white) !important; }
.offcanva-title { color: var(--at-white) !important; font-family: 'Inter', sans-serif !important; }

/* Mail icon: override theme-1 (dark blue) background */
.tpoffcanvas__info-icon a {
  background-color: var(--at-primary) !important;
  color: var(--at-brand-dark) !important;
}
.tpoffcanvas__info-icon a:hover { background-color: var(--at-primary-dark) !important; }

.tpoffcanvas__social a {
  background: rgba(255,255,255,.08) !important;
  color: var(--at-white) !important;
  border-radius: 8px !important;
  width: 36px !important; height: 36px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all .2s !important;
}
.tpoffcanvas__social a:hover { background: var(--at-primary) !important; }
.tpoffcanvas__text p { color: rgba(255,255,255,.55) !important; font-family: 'Inter', sans-serif !important; }

/* Mobile menu: override blue tp-theme-2/3 hover and active colors */
.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li a:visited {
  color: rgba(255,255,255,.85) !important;
}
.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li a:active,
.mean-container .mean-nav ul li a:focus {
  color: var(--at-primary) !important;
  background: transparent !important;
}
.mean-container .mean-nav ul li a.mean-expand { color: rgba(255,255,255,.7) !important; }
.mean-container .mean-nav ul li a.mean-expand:hover,
.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--at-primary) !important;
  background: transparent !important;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

/* Tablet (≤ 1199px) */
@media (max-width: 1199px) {
  .at-header .container-fluid { padding-left: 24px !important; padding-right: 24px !important; }
  .tp-header__main-menu nav ul li a { padding: 0 10px !important; font-size: 12px !important; }
}

/* ---- Section overflow guard — prevents any stray wide element from scrolling ---- */
section,
.tp-price__area,
.tp-feature__area,
.tp-app__area,
.at-faq-section,
.at-faq-page,
.at-why,
.at-support-section {
  overflow-x: hidden;
}

/* Tablet portrait (≤ 991px) */
@media (max-width: 991px) {
  .at-header .container-fluid { padding-left: 20px !important; padding-right: 20px !important; }
  .at-header__logo img { height: 62px; }
  .at-header__logo,
  .at-header__actions { height: 68px; }
  .at-header__row { min-height: 68px; }

  .at-hero { padding: 56px 0 60px; min-height: auto; }
  .at-hero__stats { gap: 24px; }
  .at-hero__badge { display: none !important; }
  .at-hero__title { font-size: clamp(32px, 5vw, 52px); }
  .at-hero .col-xl-6 { width: 100% !important; }
  .at-hero .col-xl-6:last-child { display: none; }

  .tp-price__item { margin-bottom: 20px; }
  .tp-price__active { transform: none !important; }
  .tp-feature__area,
  .tp-app__area { padding: 80px 0 !important; }
}

/* Phone (≤ 767px) */
@media (max-width: 767px) {
  /* --- Header --- */
  .at-header .container-fluid { padding-left: 16px !important; padding-right: 16px !important; }
  .at-header__logo img { height: 56px; }
  .at-header__logo,
  .at-header__actions { height: 64px; }
  .at-header__row { min-height: 64px; }

  /* --- Hero --- */
  .at-hero { padding: 44px 0 48px; min-height: auto; }
  .at-hero__tag {
    font-size: 10px !important;
    padding: 5px 12px !important;
    letter-spacing: .05em !important;
    margin-bottom: 18px !important;
  }
  .at-hero__title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: -.02em;
    margin-bottom: 14px;
  }
  .at-hero__sub {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 24px;
    color: rgba(255,255,255,.6);
  }

  /* Buttons: stack, full width, same height */
  .at-hero__actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100%;
    margin-bottom: 0;
  }
  .at-hero__actions .tp-btn {
    justify-content: center !important;
    font-size: 14px !important;
    padding: 13px 20px !important;
    border-radius: 100px !important;
  }
  .at-hero__actions .at-btn-ghost {
    justify-content: center !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    border-radius: 100px !important;
    color: rgba(255,255,255,.85) !important;
    border-color: rgba(255,255,255,.3) !important;
  }

  /* Stats: 3-col grid */
  .at-hero__stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    margin-top: 32px;
    padding-top: 24px;
  }
  .at-hero__stat-num { font-size: 20px; }
  .at-hero__stat-label { font-size: 10px; }

  /* --- Section spacing --- */
  .at-section,
  .tp-feature__area,
  .tp-app__area,
  .tp-testimonial__area,
  .at-faq-section,
  .at-why,
  .at-faq-page,
  .at-support-section { padding: 60px 0 !important; }

  /* --- Section tags/titles --- */
  .at-section-tag { font-size: 10px; padding: 5px 12px; gap: 6px; }
  .at-section-tag::before { width: 6px; height: 6px; }
  .at-section-title { font-size: 24px !important; line-height: 1.25 !important; }
  .at-section-sub { font-size: 14px !important; }

  /* --- Feature cards --- */
  .at-feature-card { padding: 22px 18px; }
  .at-feature-card__icon { width: 48px; height: 48px; margin-bottom: 14px; }
  .at-feature-card__title { font-size: 16px; }
  .at-feature-card__desc { font-size: 13px; }

  /* --- Pricing --- */
  .tp-price__active { transform: none !important; box-shadow: var(--at-shadow-lg) !important; }
  .tp-price__item { padding: 28px 22px !important; }
  .tp-price__title { font-size: 32px !important; }

  /* --- Testimonials --- */
  .tp-testimonial__item { flex-direction: column !important; }

  /* --- Page hero (inner pages) --- */
  .at-page-hero { padding: 44px 0 36px; }
  .at-page-hero__title { font-size: 24px !important; line-height: 1.25 !important; }
  .at-page-hero__tag { font-size: 10px !important; padding: 4px 12px !important; }

  /* --- Contact form --- */
  .at-contact-form { padding: 24px 16px; }

  /* --- Blog --- */
  .at-blog-card__body { padding: 20px 16px; }
  .at-blog-card__title { font-size: 17px; }
  .at-sidebar__widget { padding: 20px 16px; }

  /* --- Footer --- */
  .tp-footer__area { padding: 56px 0 0 !important; }
  footer h2 { font-size: 24px !important; }
}

/* Small phone (≤ 480px) */
@media (max-width: 480px) {
  .at-header__logo img { height: 50px; }
  .at-hero { padding: 40px 0 48px; }
  .at-hero__title { font-size: 26px !important; }
  .at-hero__sub { font-size: 14px; }
  .at-hero__stats { gap: 10px !important; }
  .at-hero__stat-num { font-size: 20px; }
  .at-hero__stat-label { font-size: 10px; }
  .at-hero__actions .tp-btn,
  .at-hero__actions .at-btn-ghost { font-size: 14px !important; padding: 13px 20px !important; }
  .at-section-title { font-size: 23px !important; }
  .at-page-hero__title { font-size: 22px !important; }
  .at-feature-card { padding: 20px 16px; }
  .at-feature-card__title { font-size: 16px; }
  .at-feature-card__desc { font-size: 13px; }
}

/* ============================================
   PAGE HERO (inner page breadcrumb)
   ============================================ */
.at-page-hero {
  background: var(--at-gradient-dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0 64px;
}
.at-page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,211,102,.14) 0%, transparent 70%);
  top: -120px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.at-page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168,255,120,.08) 0%, transparent 70%);
  bottom: -60px; left: -60px;
  border-radius: 50%;
  pointer-events: none;
}
.at-page-hero__inner { position: relative; z-index: 2; text-align: center; }
.at-page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.3);
  color: var(--at-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.at-page-hero__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--at-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.at-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.at-page-hero__breadcrumb a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.at-page-hero__breadcrumb a:hover { color: var(--at-primary); }
.at-page-hero__breadcrumb span {
  font-size: 14px;
  color: rgba(255,255,255,.3);
}
.at-page-hero__breadcrumb .at-crumb-current {
  font-size: 14px;
  font-weight: 600;
  color: var(--at-primary);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.at-contact-card {
  background: var(--at-white);
  border: 1.5px solid var(--at-gray-100);
  border-radius: var(--at-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all .25s;
  height: 100%;
}
.at-contact-card:hover {
  border-color: var(--at-primary);
  box-shadow: var(--at-shadow-lg);
  transform: translateY(-4px);
}
.at-contact-card__icon {
  width: 60px; height: 60px;
  background: var(--at-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 20px;
}
.at-contact-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--at-text);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.at-contact-card__info {
  font-size: 14px;
  color: var(--at-gray-500);
  line-height: 1.8;
}
.at-contact-card__info a {
  color: var(--at-gray-500);
  text-decoration: none;
  transition: color .2s;
  display: block;
}
.at-contact-card__info a:hover { color: var(--at-primary); }

.at-contact-form {
  background: var(--at-white);
  border: 1.5px solid var(--at-gray-100);
  border-radius: var(--at-radius-lg);
  padding: 48px;
}
.at-form-group {
  margin-bottom: 20px;
}
.at-form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--at-gray-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.at-form-group input,
.at-form-group textarea,
.at-form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--at-gray-300);
  border-radius: var(--at-radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--at-text);
  background: var(--at-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.at-form-group input:focus,
.at-form-group textarea:focus {
  border-color: var(--at-primary);
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}
.at-form-group textarea { min-height: 140px; resize: vertical; }

/* Override old contact inputs */
.tp-contact-input input,
.tp-contact-input textarea {
  border: 1.5px solid var(--at-gray-300) !important;
  border-radius: var(--at-radius) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  padding: 14px 18px !important;
  transition: border-color .2s, box-shadow .2s !important;
  width: 100% !important;
}
.tp-contact-input input:focus,
.tp-contact-input textarea:focus {
  border-color: var(--at-primary) !important;
  box-shadow: 0 0 0 3px rgba(37,211,102,.12) !important;
  outline: none !important;
}
.tp-submit-button button {
  background: var(--at-gradient) !important;
  color: white !important;
  border: none !important;
  padding: 14px 40px !important;
  border-radius: 100px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all .2s !important;
  box-shadow: 0 4px 20px rgba(37,211,102,.35) !important;
}
.tp-submit-button button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.45) !important;
}

/* ============================================
   AUTH PAGES (login, register, reset, verify)
   ============================================ */
.at-auth-wrap {
  display: flex;
  min-height: calc(100vh - 76px);
}

/* ---- Left brand panel ---- */
.at-auth-brand {
  width: 42%;
  flex-shrink: 0;
  background: var(--at-gradient-dark);
  position: relative;
  overflow: hidden;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.at-auth-brand::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37,211,102,.15) 0%, transparent 70%);
  top: -120px; right: -120px;
  border-radius: 50%;
  pointer-events: none;
}
.at-auth-brand::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,255,120,.08) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.at-auth-brand__inner { position: relative; z-index: 2; }
.at-auth-brand__logo { margin-bottom: 56px; }
.at-auth-brand__logo img { height: 56px; width: auto; filter: brightness(10); }
.at-auth-brand__headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.at-auth-brand__sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 40px;
}
.at-auth-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.at-auth-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}
.at-auth-features li .at-auth-check {
  width: 22px; height: 22px;
  background: var(--at-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: white;
}
.at-auth-brand__bottom { position: relative; z-index: 2; }
.at-auth-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 14px;
}
.at-auth-trust__avatars {
  display: flex;
}
.at-auth-trust__avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--at-gradient);
  border: 2px solid var(--at-brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  margin-left: -8px;
  font-family: 'Inter', sans-serif;
}
.at-auth-trust__avatars span:first-child { margin-left: 0; }
.at-auth-trust__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.at-auth-trust__text strong {
  color: #fff;
  font-weight: 700;
}

/* ---- Right form panel ---- */
.at-auth-form-panel {
  flex: 1;
  background: var(--at-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
}
.at-auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--at-white);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 8px 48px rgba(13,43,22,.08);
  border: 1px solid var(--at-gray-100);
}
.at-auth-card__mobile-logo {
  display: none;
  margin-bottom: 28px;
}
.at-auth-card__mobile-logo img { height: 44px; width: auto; }
.at-auth-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--at-text);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.at-auth-card__sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--at-gray-500);
  margin-bottom: 32px;
  line-height: 1.6;
}
.at-auth-field { margin-bottom: 18px; }
.at-auth-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--at-gray-700);
  margin-bottom: 7px;
}
.at-auth-field input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1.5px solid var(--at-gray-300);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--at-text);
  background: var(--at-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  box-sizing: border-box;
}
.at-auth-field input:focus {
  border-color: var(--at-primary);
  box-shadow: 0 0 0 3px rgba(37,211,102,.12);
}
.at-auth-field input.is-invalid { border-color: #ef4444; }
.at-auth-field .invalid-feedback {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
}
.at-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 8px;
}
.at-auth-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--at-gray-500);
  cursor: pointer;
}
.at-auth-remember input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--at-primary);
  cursor: pointer;
}
.at-auth-forgot {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--at-primary-dark);
  text-decoration: none;
}
.at-auth-forgot:hover { color: var(--at-primary); }
.at-auth-submit {
  width: 100%;
  height: 52px;
  background: var(--at-gradient);
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.at-auth-submit:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}
.at-auth-footer {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--at-gray-500);
}
.at-auth-footer a {
  color: var(--at-primary-dark);
  font-weight: 600;
  text-decoration: none;
}
.at-auth-footer a:hover { color: var(--at-primary); }
.at-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--at-gray-300);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.at-auth-divider::before,
.at-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--at-gray-100);
}
/* Plan badge on register */
.at-auth-plan-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--at-primary-light);
  border: 1.5px solid rgba(37,211,102,.25);
  border-radius: 12px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--at-primary-dark);
}
.at-auth-plan-badge i { font-size: 16px; color: var(--at-primary); }
/* Alert override */
.at-auth-card .alert-success {
  background: var(--at-primary-light);
  border: 1.5px solid rgba(37,211,102,.3);
  border-radius: 12px;
  color: var(--at-primary-dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
/* Verify page icon */
.at-auth-verify-icon {
  width: 72px; height: 72px;
  background: var(--at-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 24px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .at-auth-brand { display: none !important; }
  .at-auth-wrap { min-height: calc(100vh - 68px); }
  .at-auth-form-panel { padding: 48px 24px; }
  .at-auth-card { padding: 36px 28px; }
  .at-auth-card__mobile-logo { display: block; }
}
@media (max-width: 767px) {
  .at-auth-wrap { min-height: calc(100vh - 64px); }
  .at-auth-form-panel { padding: 32px 16px; align-items: flex-start; padding-top: 40px; }
  .at-auth-card { padding: 28px 20px; border-radius: 20px; }
  .at-auth-card__title { font-size: 22px; }
}

/* ============================================
   BLOG
   ============================================ */
.at-blog-card {
  background: var(--at-white);
  border: 1.5px solid var(--at-gray-100);
  border-radius: var(--at-radius-lg);
  overflow: hidden;
  transition: all .25s;
  margin-bottom: 28px;
}
.at-blog-card:hover {
  border-color: var(--at-primary);
  box-shadow: var(--at-shadow-lg);
  transform: translateY(-4px);
}
.at-blog-card__img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.at-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.at-blog-card:hover .at-blog-card__img img { transform: scale(1.04); }
.at-blog-card__body { padding: 28px; }
.at-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.at-blog-card__meta span {
  font-size: 12px;
  font-weight: 500;
  color: var(--at-gray-500);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
}
.at-blog-card__meta i { color: var(--at-primary); font-size: 11px; }
.at-blog-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--at-text);
  line-height: 1.4;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.at-blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.at-blog-card__title a:hover { color: var(--at-primary); }
.at-blog-card__excerpt {
  font-size: 14px;
  color: var(--at-gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
}
.at-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--at-primary-dark);
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.at-blog-card__link:hover { gap: 10px; color: var(--at-primary); }

/* Sidebar */
.at-sidebar__widget {
  background: var(--at-white);
  border: 1.5px solid var(--at-gray-100);
  border-radius: var(--at-radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.at-sidebar__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--at-text);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--at-primary-light);
  position: relative;
}
.at-sidebar__title::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--at-primary);
  border-radius: 2px;
}
.at-sidebar-search {
  display: flex;
  border: 1.5px solid var(--at-gray-300);
  border-radius: var(--at-radius);
  overflow: hidden;
}
.at-sidebar-search input {
  flex: 1;
  border: none;
  padding: 11px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--at-text);
  outline: none;
}
.at-sidebar-search button {
  background: var(--at-gradient);
  border: none;
  padding: 0 18px;
  color: white;
  cursor: pointer;
  font-size: 14px;
}
.at-recent-post {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--at-gray-100);
}
.at-recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.at-recent-post__img {
  width: 72px; height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.at-recent-post__img img { width: 100%; height: 100%; object-fit: cover; }
.at-recent-post__date { font-size: 11px; color: var(--at-gray-500); font-family: 'Inter'; margin-bottom: 4px; }
.at-recent-post__title { font-size: 13px; font-weight: 600; color: var(--at-text); line-height: 1.4; }
.at-recent-post__title a { color: inherit; text-decoration: none; }
.at-recent-post__title a:hover { color: var(--at-primary); }
.at-sidebar-cats ul {
  list-style: none;
  padding: 0; margin: 0;
}
.at-sidebar-cats ul li {
  border-bottom: 1px solid var(--at-gray-100);
}
.at-sidebar-cats ul li:last-child { border-bottom: none; }
.at-sidebar-cats ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--at-gray-700);
  text-decoration: none;
  transition: color .2s;
}
.at-sidebar-cats ul li a:hover { color: var(--at-primary); }
.at-tagcloud { display: flex; flex-wrap: wrap; gap: 8px; }
.at-tagcloud a {
  display: inline-block;
  padding: 5px 14px;
  background: var(--at-primary-light);
  color: var(--at-primary-dark);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.at-tagcloud a:hover { background: var(--at-gradient); color: white; }

/* Blog detail */
.at-blog-detail__img {
  border-radius: var(--at-radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.at-blog-detail__img img { width: 100%; border-radius: var(--at-radius-lg); }
.at-blog-detail__content { font-family: 'Inter', sans-serif; }
.at-blog-detail__content h3,
.postbox__title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 28px !important;
  color: var(--at-text) !important;
  margin-bottom: 16px !important;
}
.at-blog-detail__content p,
.postbox__text p {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  color: var(--at-gray-500) !important;
  line-height: 1.85 !important;
  margin-bottom: 20px !important;
}
.at-blog-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--at-gray-100);
}
.at-blog-tags span {
  font-size: 13px;
  font-weight: 700;
  color: var(--at-gray-700);
  font-family: 'Inter', sans-serif;
}

/* ============================================
   ABOUT PAGE — TEAM CARDS
   ============================================ */
.at-team-card {
  background: var(--at-white);
  border: 1.5px solid var(--at-gray-100);
  border-radius: var(--at-radius-lg);
  overflow: hidden;
  transition: all .25s;
  text-align: center;
}
.at-team-card:hover {
  border-color: var(--at-primary);
  box-shadow: var(--at-shadow-lg);
  transform: translateY(-4px);
}
.at-team-card__img {
  aspect-ratio: 1;
  overflow: hidden;
}
.at-team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.at-team-card:hover .at-team-card__img img { transform: scale(1.05); }
.at-team-card__body { padding: 20px; }
.at-team-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--at-text);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.at-team-card__role {
  font-size: 13px;
  color: var(--at-primary-dark);
  font-weight: 500;
  margin-bottom: 14px;
}
.at-team-card__socials { display: flex; justify-content: center; gap: 8px; }
.at-team-card__socials a {
  width: 32px; height: 32px;
  background: var(--at-primary-light);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--at-primary-dark);
  font-size: 13px;
  text-decoration: none;
  transition: all .2s;
}
.at-team-card__socials a:hover { background: var(--at-gradient); color: white; }

/* ============================================
   ABOUT PAGE — COUNTER CARDS
   ============================================ */
.at-counter-section {
  background: var(--at-gradient-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.at-counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%2325D366' fill-opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.at-counter-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(37,211,102,.15);
  border-radius: var(--at-radius-lg);
  transition: all .25s;
}
.at-counter-card:hover {
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.35);
  transform: translateY(-4px);
}
.at-counter-card__num {
  font-size: 48px;
  font-weight: 900;
  color: var(--at-white);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.at-counter-card__num span { color: var(--at-primary); }
.at-counter-card__label {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* ============================================
   FAQ PAGE — FULL WIDTH
   ============================================ */
.at-faq-page {
  background: var(--at-gray-50);
  padding: 100px 0;
}
.at-faq-page .at-accordion .accordion-item {
  background: var(--at-white);
}

/* ============================================
   ABOUT INNER — descriptions & lists
   ============================================ */
.at-about-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--at-gray-500);
  line-height: 1.85;
  margin-bottom: 20px;
}
.at-facility-list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
}
.at-facility-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--at-gray-100);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--at-gray-700);
}
.at-facility-list li i { color: var(--at-primary); font-size: 14px; }

/* ============================================
   SUPPORT / FAQ IN FEATURES PAGE
   ============================================ */
.at-support-section {
  background: var(--at-light);
  padding: 100px 0;
}

/* ============================================
   RESPONSIVE — inner pages
   ============================================ */
@media (max-width: 767px) {
  .at-page-hero { padding: 80px 0 48px; }
  .at-page-hero__title { font-size: 28px; }
  .at-contact-form { padding: 28px 20px; }
  .at-counter-card__num { font-size: 36px; }
  .at-blog-card__body { padding: 20px; }
  .at-sidebar__widget { padding: 20px; }
}
@media (max-width: 480px) {
  .at-page-hero { padding: 70px 0 40px; }
}
