/* ===========================
   AI Property Manager — Master Stylesheet
   Combined & Deduplicated
   =========================== */

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

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --primary:        #e85d26;
  --primary-dark:   #c94e1c;
  --primary-light:  #fff0ea;
  --navy:           #0f1e45;
  --navy-mid:       #1a2e5a;
  --navy-light:     #2d4a8a;
  --blue-dark:      #1a2e5a;
  --blue-mid:       #1e3a6e;
  --blue-light:     #2d5be3;
  --blue-accent:    #3461d4;
  --orange:         #e85d26;
  --orange-hover:   #c94e1c;
  --gold:           #f5a623;
  --yellow-gold:    #f5a623;
  --gold-light:     #fff7e6;
  --green:          #10b981;
  --green-light:    #e6faf4;
  --red:            #ef4444;
  --red-light:      #fef2f2;
  --white:          #ffffff;
  --off-white:      #f8fafd;
  --bg-light:       #f8f9fc;
  --bg-section:     #f3f6fb;
  --bg-dark:        #0a1628;
  --text-dark:      #1a1a2e;
  --text-body:      #374151;
  --text-gray:      #6b7280;
  --text-muted:     #6b7280;
  --text-light:     #9ca3af;
  --border:         #e5e7eb;
  --border-light:   #f0f2f5;
  --shadow-sm:      0 2px 8px rgba(15,30,69,0.07);
  --shadow:         0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 32px rgba(15,30,69,0.14);
  --shadow-lg:      0 16px 56px rgba(15,30,69,0.18);
  --radius-sm:      6px;
  --radius:         8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; background: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* ===========================
   CONTAINER
   =========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-body); line-height: 1.75; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 40px;
}
.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ===========================
   SECTION SPACING
   =========================== */
.section { padding: 72px 0; }
.section-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-title { margin-bottom: 12px; }
.section-header p { font-size: 14.5px; color: var(--text-gray); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 13px 28px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(232,93,38,0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,38,0.45);
}
.btn-secondary {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, border-color .2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary .play-icon {
  width: 28px; height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-dark);
  font-size: 11px;
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 12px 24px;
  transition: var(--transition);
}
.btn-play:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}
.play-circle {
  width: 32px; height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 11px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-enquire {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .1s;
  margin-left: 10px;
}
.btn-enquire:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ===========================
   COMMON COMPONENTS
   =========================== */

/* Card */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }

/* Icon Box */
.icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.icon-box.orange { background: var(--primary-light); color: var(--primary); }
.icon-box.blue   { background: #eef3ff; color: var(--blue-accent); }
.icon-box.green  { background: var(--green-light); color: var(--green); }
.icon-box.gold   { background: var(--gold-light); color: var(--gold); }
.icon-box.navy   { background: rgba(15,30,69,0.08); color: var(--navy); }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 30px;
}
.badge-orange { background: var(--primary-light); color: var(--primary); }
.badge-green  { background: var(--green-light);   color: var(--green); }
.badge-blue   { background: #eef3ff;              color: var(--blue-accent); }
.badge-gold   { background: var(--gold-light);    color: #b8750a; }

/* Divider */
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 4px;
  margin: 16px 0 24px;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* Check List */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--text-body);
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px; min-width: 22px;
  background: var(--green-light); color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}

/* Image Frame */
.img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
}
.img-badge.bottom-left  { bottom: 24px; left: -20px; }
.img-badge.bottom-right { bottom: 24px; right: -20px; }
.img-badge .big-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.img-badge .small-txt { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* Stat Row */
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.stat-num span { color: var(--primary); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 12.5px;
  padding: 7px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a { color: #cdd5e0; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.top-bar-left a:hover { color: #fff; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #cdd5e0;
  font-size: 11px;
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--orange); color: #fff; }
.top-bar-right .login-link { color: #cdd5e0; font-size: 12.5px; display: flex; align-items: center; gap: 5px; }
.top-bar-right .login-link:hover { color: #fff; }

/* ===========================
   HEADER / NAVBAR
   =========================== */
.header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  /*position: sticky;*/
  top: 0;
  z-index: 999;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.logo-text { line-height: 1.1; }
.logo-text .brand { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: var(--blue-dark); }
.logo-text .tagline { font-size: 10px; color: var(--text-gray); letter-spacing: 0.3px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav ul, .mobile-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 25px;
}
.nav ul li, .mobile-nav ul li { display: inline-block; }
.nav ul li a, .mobile-nav ul li a { text-decoration: none; color: inherit; }
.nav-item { position: relative; }
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: 5px;
  display: flex; align-items: center; gap: 4px;
  transition: color .2s;
}
.nav-link:hover { color: var(--orange); }
.nav-link .arrow { font-size: 10px; color: var(--text-gray); }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  background: linear-gradient(135deg, #0f1f45 0%, #1a3470 50%, #1e3d84 100%);
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-house.jpg') right center/contain no-repeat;
  opacity: 0.35;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-content {
  max-width: 50%;
  padding: 70px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,93,38,0.15);
  border: 1px solid rgba(232,93,38,0.4);
  color: #ffb385;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge span {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero h1 span { color: var(--orange); }
.hero-subtitle { font-size: 14px; color: #c5d0e8; margin-bottom: 10px; font-weight: 600;max-width: 420px;}
.hero-desc { font-size: 14.5px; color: #8fa3c8; margin-bottom: 32px; max-width: 420px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 17px;
}
.hero-stat-text .label { font-size: 12px; color: #7d93b8; }
.hero-stat-text .value { font-size: 12px; font-weight: 700; color: #fff; }

div#hero_image_section { width: 45%; margin-left: 20px; }
div#hero_image_section img { border-radius: 20px; }

/* ===========================
   PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  background: linear-gradient(130deg, var(--navy) 0%, #122454 45%, #1e3878 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 50%, rgba(52,97,212,0.18) 0%, transparent 70%),
    radial-gradient(circle 300px at 10% 80%, rgba(232,93,38,0.1) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}
.page-hero .container { position: relative; z-index: 2; }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.hero-breadcrumb a { color: rgba(255,255,255,0.55); transition: color .2s; }
.hero-breadcrumb a:hover { color: var(--primary); }
.hero-breadcrumb .sep { color: rgba(255,255,255,0.3); }
.hero-breadcrumb .current { color: var(--primary); font-weight: 600; }
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.page-hero h1 span { color: var(--primary); }
.hero-cta-wrap {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
}
.hero-shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  animation: floatShape 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-shape.s1 { width: 280px; height: 280px; top: -80px; right: -60px; animation-delay: 0s; }
.hero-shape.s2 { width: 160px; height: 160px; bottom: -40px; left: 8%; animation-delay: 3s; }
.hero-shape.s3 { width: 80px; height: 80px; top: 30%; right: 25%; animation-delay: 1.5s; border: 2px solid rgba(255,255,255,0.06); background: none; }

/* ===========================
   PROBLEM SECTION
   =========================== */
.problem-section { background: #fff; }
.problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .25s, transform .25s;
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.problem-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.problem-icon.red   { background: #fff0ec; color: #e85d26; }
.problem-icon.blue  { background: #eef3ff; color: #2d5be3; }
.problem-icon.green { background: #edfaf4; color: var(--green); }
.problem-card h3 { font-family:'Poppins',sans-serif; font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.problem-card p  { font-size: 13.5px; color: var(--text-gray); line-height: 1.65; }

/* ===========================
   SOLUTION SECTION
   =========================== */
.solution-section { background: var(--bg-section); }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.solution-features { display: flex; flex-direction: column; gap: 22px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-check {
  width: 30px; height: 30px; min-width: 30px;
  background: var(--blue-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; margin-top: 2px;
}
.feature-text h4 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.feature-text p  { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* Dashboard Mockup */
.dashboard-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dash-top { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dash-left { padding: 18px; border-right: 1px solid var(--border); }
.dash-right { padding: 18px; }
.dash-label { font-size: 11px; font-weight: 700; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.dash-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.dash-stat { text-align: center; padding: 10px 8px; background: var(--bg-section); border-radius: 8px; }
.dash-stat .num { font-size: 22px; font-weight: 800; color: var(--blue-dark); font-family: 'Poppins',sans-serif; }
.dash-stat .lbl { font-size: 10px; color: var(--text-gray); margin-top: 2px; }
.activity-title { font-size: 12px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.activity-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f0f2f5; }
.activity-item:last-child { border-bottom: none; }
.activity-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.activity-dot.orange { background: var(--orange); }
.activity-dot.green  { background: var(--green); }
.activity-dot.blue   { background: var(--blue-light); }
.activity-info { flex: 1; }
.activity-info .act-name { font-size: 12px; font-weight: 600; color: var(--blue-dark); }
.activity-info .act-id   { font-size: 11px; color: var(--text-gray); }
.activity-time  { font-size: 10px; color: var(--text-gray); }
.activity-badge { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.badge-progress { background: #fff3e0; color: #f57c00; }
.badge-done     { background: #e8f5e9; color: #2e7d32; }
.badge-replied  { background: #e3f2fd; color: #1565c0; }

/* Tenant Chat */
.tenant-chat { background: #fff; border-right: 1px solid var(--border); padding: 16px; }
.chat-header { font-size: 12px; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.chat-bubble { background: var(--bg-section); border-radius: 10px 10px 10px 2px; padding: 10px 12px; font-size: 12px; color: var(--text-dark); margin-bottom: 8px; }
.chat-bubble .badge-new { background: var(--orange); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 10px; margin-left: 6px; }
.chat-response { background: #e8f0fe; border-radius: 10px 10px 2px 10px; padding: 10px 12px; font-size: 12px; color: var(--blue-dark); margin-bottom: 8px; }
.vendor-tag { display: flex; align-items: center; gap: 8px; background: var(--bg-section); border-radius: 8px; padding: 8px 12px; font-size: 12px; margin-top: 6px; }
.vendor-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-dark); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 700; }
.vendor-info .name { font-weight: 600; font-size: 12px; color: var(--blue-dark); }
.vendor-info .sub  { font-size: 10px; color: var(--text-gray); }

/* ===========================
   HOW IT WORKS
   =========================== */
.how-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.step-card {
  text-align: center; padding: 32px 20px;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
  width: 38px; height: 38px;
  background: var(--blue-dark); color: #fff;
  border-radius: 50%;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Poppins',sans-serif;
}
.step-icon { font-size: 36px; margin-bottom: 14px; }
.step-card h3 { font-family:'Poppins',sans-serif; font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.step-card p   { font-size: 12.5px; color: var(--text-gray); line-height: 1.6; }
.step-connector { position: absolute; right: -24px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--orange); z-index: 1; }

/* HIW Page — Timeline */
.hiw-section { background: #fff; }
.hiw-hero-visual { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.steps-timeline { position: relative; padding-left: 20px; }
.steps-timeline::before {
  content: ''; position: absolute;
  left: 34px; top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--navy) 100%);
}
.timeline-step { display: flex; gap: 22px; align-items: flex-start; position: relative; padding: 20px 0; }
.step-bubble {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 800;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 5px rgba(15,30,69,0.1);
  transition: var(--transition);
}
.timeline-step:hover .step-bubble { background: var(--primary); box-shadow: 0 0 0 6px rgba(232,93,38,0.15); }
.step-content h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-content p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   COST COMPARISON
   =========================== */
.cost-section { background: var(--bg-section); }
.comparison-wrap { display: flex; align-items: center; gap: 20px; margin-top: 36px; }
.compare-card {
  flex: 1; border-radius: var(--radius-lg);
  padding: 32px; border: 2px solid var(--border); background: #fff;
}
.compare-card.traditional { border-color: #ddd; }
.compare-card.us {
  background: var(--blue-dark); border-color: var(--blue-dark); color: #fff;
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(26,46,90,0.3);
}
.compare-badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 14px;
}
.traditional .compare-badge { background: #f0f0f0; color: #666; }
.us .compare-badge { background: rgba(255,255,255,0.15); color: #fff; }
.compare-price { font-family:'Poppins',sans-serif; font-size: 42px; font-weight: 800; margin-bottom: 20px; }
.traditional .compare-price { color: var(--blue-dark); }
.us .compare-price { color: #fff; }
.compare-price span { font-size: 18px; font-weight: 500; }
.compare-list { display: flex; flex-direction: column; gap: 10px; }
.compare-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.traditional .compare-item { color: var(--text-gray); }
.us .compare-item { color: #c5d0e8; }
.compare-item .ci { font-size: 15px; }
.vs-divider {
  text-align: center; font-family:'Poppins',sans-serif;
  font-size: 22px; font-weight: 900; color: var(--text-gray);
  background: var(--border); width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.savings-card {
  background: var(--yellow-gold); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center; flex: 0.7;
  box-shadow: 0 8px 32px rgba(245,166,35,0.3);
}
.savings-card .save-label { font-size: 12px; font-weight: 600; color: #7a4500; margin-bottom: 4px; }
.savings-card .save-pct   { font-family:'Poppins',sans-serif; font-size: 52px; font-weight: 900; color: #fff; line-height: 1; }
.savings-card .save-sub   { font-size: 14px; font-weight: 700; color: #fff; margin-top: 4px; }
.savings-card .save-icon  { font-size: 44px; margin-top: 10px; }

/* ===========================
   BUILT FOR YOU
   =========================== */
.built-section { background: #fff; }
.built-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.built-features { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.built-feature { text-align: center; padding: 20px 12px; }
.bf-icon  { font-size: 36px; margin-bottom: 12px; }
.bf-title { font-size: 14px; font-weight: 700; color: var(--blue-dark); margin-bottom: 6px; font-family:'Poppins',sans-serif; }
.bf-desc  { font-size: 12.5px; color: var(--text-gray); line-height: 1.55; }
.built-image { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.built-image img { width: 100%; height: 320px; object-fit: cover; }
.built-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--orange); color: #fff;
  border-radius: 10px; padding: 10px 15px;
  text-align: center; box-shadow: 0 6px 20px rgba(232,93,38,0.4);
}
.built-badge .b1 { font-size: 12px; font-weight: 800; }
.built-badge .b2 { font-size: 10px; font-weight: 500; }
.built-badge .b3 { font-size: 12px; font-weight: 800; }

/* Testimonials */

.testi-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  /* Matches the subtle background in image */
}

.testi-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testi-card {
  background: #ffffff;
  border-radius: 24px; /* Matches the high-radius 'lg' look */
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  margin: 0 12px;
  flex: 0 0 calc(50% - 24px); /* 2 per row */
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stars {
  color: #f5a623; font-size: 17px; margin-bottom: 14px; letter-spacing: 2px;
}

.quote-icon svg {
  opacity: 0.9;
  width: 28px;
  height: 28px;
}

p.testi-text {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-dark);
}

.testi-controls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
button.arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
    transition: background .2s, color .2s;
}
button.arrow-btn:hover { background: var(--blue-dark); color: #fff; border-color: var(--blue-dark); }
/* Responsive Logic */
@media (max-width: 1024px) {
  .testi-card {
    flex: 0 0 calc(100% - 24px); /* 1 per row on tablet/mobile */
    margin-bottom: 20px;
  }
}

/* ===========================
   FAQ
   =========================== */
.faq-section { background: #fff; padding: 90px 0; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open  { box-shadow: var(--shadow); }
.faq-question {
  width: 100%; padding: 12px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600; color: var(--blue-dark);
  cursor: pointer; background: #fff; text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: var(--bg-section); }
.faq-icon { font-size: 18px; color: var(--text-gray); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer {
  overflow: hidden;
  font-size: 13.5px; color: var(--text-gray); line-height: 1.65;
  padding: 10px;
  display: none;
}
.faq-item.open .faq-answer { display: block;border-top: 1px solid #e5e5e5;}

/* FAQ Page Layout */
.faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.faq-nav { display: flex; flex-direction: column; gap: 4px; }
.faq-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
  border: 1px solid transparent;
}
.faq-nav-item:hover { background: var(--off-white); color: var(--navy); }
.faq-nav-item.active { background: var(--primary-light); color: var(--primary); border-color: rgba(232,93,38,0.2); font-weight: 700; }
.faq-nav-item .nav-icon { font-size: 16px; }
.faq-content { }
.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--navy);
  padding-bottom: 14px; border-bottom: 2px solid var(--border-light);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.faq-group-title span { font-size: 22px; }
.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 10px; overflow: hidden;
  transition: box-shadow .25s;
}
.accordion-item:hover { box-shadow: var(--shadow-sm); }
.accordion-item.open  { box-shadow: var(--shadow); }
.accordion-trigger {
  width: 100%; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--navy);
  background: #fff; cursor: pointer; text-align: left; gap: 16px;
  transition: background .2s;
}
.accordion-trigger:hover { background: var(--off-white); }
.accordion-item.open .accordion-trigger { background: var(--off-white); color: var(--primary); }
.accordion-icon {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-muted);
  transition: var(--transition);
}
.accordion-item.open .accordion-icon { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  padding: 0 22px;
  font-size: 14.5px; color: var(--text-muted); line-height: 1.75;
  transition: max-height .4s ease, padding .4s ease;
}
.accordion-item.open .accordion-body { max-height: 300px; padding: 0 22px 20px; }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg, #1a2e5a 0%, #0f1f45 100%);
  padding: 72px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-left .cta-label { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.cta-left h2 { font-family:'Poppins',sans-serif; font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-left p  { font-size: 14px; color: #8fa3c8; max-width: 420px; }
.cta-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-guarantee {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 16px 20px; text-align: center; color: #fff;
}
.cta-guarantee .g-days { font-size: 28px; font-weight: 800; font-family:'Poppins',sans-serif; color: var(--yellow-gold); }
.cta-guarantee .g-text { font-size: 11px; color: #8fa3c8; }
.cta-check { font-size: 12.5px; color: #8fa3c8; display: flex; align-items: center; gap: 6px; }
.cta-check::before { content: '✓'; color: var(--green); font-weight: 700; }

div#bottom_cta_section_inner {
  display: flex; gap: 30px; flex-direction: row;
  justify-content: center; padding-bottom: 20px; flex-wrap: wrap;
}
.cta-checks {
  display: flex; flex-direction: row;
  gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap;
}

/* CTA Banner (inner pages) */
.cta-banner {
  background: linear-gradient(130deg, #e85d26 0%, #d44a15 50%, #c03d0e 100%);
  padding: 70px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle 400px at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(circle 200px at 10% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner-inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.cta-banner-text h2 { font-family: 'Inter', sans-serif; font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-banner-text p  { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 480px; }
.cta-banner-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-white {
  background: #fff; color: var(--primary);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); pointer-events: none; }
.cta-deco.d1 { width: 220px; height: 220px; top: -80px; right: 5%; }
.cta-deco.d2 { width: 100px; height: 100px; bottom: -30px; left: 35%; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: #0d1b38; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-about .logo { margin-bottom: 14px; }
.footer-about .logo-text .brand { color: #fff; }
.footer-desc { font-size: 13px; color: #ccc; line-height: 1.7; max-width: 250px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 14px;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: #ccc; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12.5px; color: #ccc; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: #ccc; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===========================
   PRICING PAGE
   =========================== */
.pricing-section { background: var(--off-white); }
.pricing-toggle { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; font-size: 15px; color: var(--text-muted); font-weight: 600; }
.toggle-track {
  width: 52px; height: 28px; background: var(--primary);
  border-radius: 30px; position: relative; cursor: pointer; transition: background .3s;
}
.toggle-thumb {
  width: 22px; height: 22px; background: #fff; border-radius: 50%;
  position: absolute; top: 3px; left: 3px;
  transition: transform .3s; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.toggle-track.annual .toggle-thumb { transform: translateX(24px); }
.save-badge { background: var(--green-light); color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: #fff; border-radius: var(--radius-xl);
  border: 2px solid var(--border-light); padding: 36px 30px;
  position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--navy); border-color: var(--navy);
  transform: scale(1.04); box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 18px; border-radius: 30px; white-space: nowrap;
}
.plan-name { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-card.featured .plan-name { color: rgba(255,255,255,0.6); }
.plan-price { font-family: 'Inter', sans-serif; font-size: 52px; font-weight: 800; color: var(--navy); line-height: 1; display: flex; align-items: flex-start; gap: 4px; margin-bottom: 6px; }
.pricing-card.featured .plan-price { color: #fff; }
.plan-price .currency { font-size: 22px; margin-top: 10px; font-weight: 600; }
.plan-price .period  { font-size: 16px; font-weight: 500; margin-top: auto; padding-bottom: 6px; }
.plan-desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.55); }
.plan-divider { height: 1px; background: var(--border-light); margin: 20px 0; }
.pricing-card.featured .plan-divider { background: rgba(255,255,255,0.12); }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-body); }
.pricing-card.featured .plan-feature { color: rgba(255,255,255,0.8); }
.plan-feature .fi { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.plan-feature .fi.yes { background: var(--green-light); color: var(--green); }
.plan-feature .fi.no  { background: var(--border-light); color: var(--text-light); }
.pricing-card.featured .plan-feature .fi.yes { background: rgba(15,186,129,0.2); }
.pricing-card.featured .plan-feature .fi.no  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); }
.plan-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; transition: var(--transition); }
.plan-btn.solid   { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(232,93,38,0.3); }
.plan-btn.solid:hover { background: var(--primary-dark); box-shadow: 0 8px 24px rgba(232,93,38,0.4); }
.plan-btn.outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.plan-btn.outline:hover { background: var(--navy); color: #fff; }
.plan-btn.white   { background: #fff; color: var(--primary); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.plan-btn.white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

/* Comparison Table */
.compare-section { background: #fff; padding: 90px 0; }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { font-family: 'Inter', sans-serif; font-weight: 700; padding: 18px 20px; text-align: left; background: var(--navy); color: #fff; }
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.compare-table th.highlight   { background: var(--primary); }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--border-light); color: var(--text-body); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table td.highlight-col { background: rgba(232,93,38,0.04); font-weight: 600; color: var(--navy); }
.compare-table tr:nth-child(even) td.highlight-col { background: rgba(232,93,38,0.07); }
.ct-yes     { color: var(--green); font-size: 17px; font-weight: 700; }
.ct-no      { color: var(--text-light); font-size: 17px; }
.ct-partial { color: var(--gold); font-size: 13px; font-weight: 600; }

/* Why Pay More */
.why-section { background: var(--bg-section); padding: 90px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--border-light); text-align: center; transition: var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 40px; margin-bottom: 16px; }
.why-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--navy); }
.why-card p  { font-size: 14px; color: var(--text-muted); }

/* ===========================
   VALUE SECTION
   =========================== */
.value-section { background: var(--bg-section); padding: 90px 0; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: #fff; border-radius: var(--radius-xl); padding: 36px 28px;
  border: 1px solid var(--border-light); transition: var(--transition);
  position: relative; overflow: hidden;
}
.value-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.value-card:hover::after { transform: scaleX(1); }
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.value-card .vc-num { font-family: 'Inter', sans-serif; font-size: 4rem; font-weight: 800; color: rgba(15,30,69,0.06); line-height: 1; margin-bottom: -8px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--text-muted); }

/* ===========================
   PROBLEM & SOLUTION (HIW Page)
   =========================== */
.prob-sol-section { background: #fff; padding: 90px 0; }
.prob-sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.prob-title {
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy);
  padding: 14px 20px; border-radius: var(--radius) var(--radius) 0 0;
  display: flex; align-items: center; gap: 10px;
}
.prob-title.problem-bg  { background: var(--red-light); color: var(--red); }
.prob-title.solution-bg { background: var(--green-light); color: var(--green); }
.prob-items { border: 1px solid var(--border-light); border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); overflow: hidden; }
.prob-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-bottom: 1px solid var(--border-light); transition: background .2s; }
.prob-item:last-child { border-bottom: none; }
.prob-item:hover { background: var(--off-white); }
.prob-item-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.prob-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.prob-item p  { font-size: 13px; color: var(--text-muted); }

/* Social Proof Numbers */
.sp-section  { background: var(--bg-section); padding: 90px 0; }
.sp-numbers  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 56px; }
.sp-num-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition); }
.sp-num-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sp-num { font-family: 'Inter', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.sp-lbl { font-size: 13px; color: var(--text-muted); }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { background: #fff; padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); background: var(--off-white); transition: var(--transition); }
.contact-item:hover { box-shadow: var(--shadow); transform: translateX(5px); }
.contact-item-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-text h4 { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-bottom: 3px; }
.contact-item-text a  { font-size: 15px; font-weight: 700; color: var(--navy); transition: color .2s; }
.contact-item-text a:hover { color: var(--primary); }
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); margin-top: 28px; height: 220px; position: relative; background: #e8f0fe; }
.map-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; background: linear-gradient(135deg, #e8f0fe, #dce8f8); color: var(--blue-accent); }
.map-placeholder .map-icon { font-size: 40px; }
.map-placeholder p { font-size: 13px; color: var(--text-muted); }
.contact-form-wrap { background: var(--off-white); border-radius: var(--radius-xl); padding: 40px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.form-title    { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-group    { margin-bottom: 20px; }
.form-label    { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form-label span { color: var(--primary); }
.form-input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 15px; color: var(--text-dark); background: #fff; transition: border-color .25s, box-shadow .25s; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232,93,38,0.1); }
.form-input::placeholder { color: var(--text-light); }
.form-submit {border:none; width: 100%; padding: 15px; background: var(--primary); color: #fff; border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; transition: var(--transition); box-shadow: 0 4px 18px rgba(232,93,38,0.3); }
.form-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,93,38,0.4); }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.form-success { display: none; text-align: center; padding: 28px; }
.form-success .success-icon { font-size: 48px; margin-bottom: 14px; animation: bounceIn .6s ease; }
.form-success h3 { font-size: 20px; color: var(--green); margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: var(--text-muted); }

/* ===========================
   PRIVACY & TERMS PAGES
   =========================== */
.legal-section { background: #fff; padding: 80px 0; }
.legal-layout  { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.legal-sidebar { position: sticky; top: 100px; }
.legal-sidebar h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 14px; }
.legal-nav { display: flex; flex-direction: column; gap: 4px; }
.legal-nav a { font-size: 13.5px; color: var(--text-muted); padding: 8px 12px; border-radius: var(--radius-sm); border-left: 2px solid transparent; transition: var(--transition); }
.legal-nav a:hover { color: var(--navy); background: var(--off-white); }
.legal-nav a.active { color: var(--primary); border-left-color: var(--primary); background: var(--primary-light); font-weight: 600; }
.legal-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.legal-meta-item { font-size: 12.5px; color: var(--text-muted); background: var(--off-white); padding: 5px 12px; border-radius: 30px; border: 1px solid var(--border-light); display: flex; align-items: center; gap: 5px; }
.legal-content h2 { font-family: 'Inter', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border-light); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; margin-top: 24px; }
.legal-content p  { font-size: 14.5px; color: var(--text-body); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul { margin: 12px 0 20px 0; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { font-size: 14.5px; color: var(--text-body); padding-left: 20px; position: relative; }
.legal-content ul li::before { content: '•'; position: absolute; left: 6px; color: var(--primary); font-weight: 700; }
.legal-highlight { background: var(--primary-light); border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 20px 0; font-size: 14px; color: var(--text-body); line-height: 1.75; }
div#pripol-legallayout-main-section { grid-template-columns: 1fr; }

/* ===========================
   ABOUT PAGE
   =========================== */
.content-section { padding: 50px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text .section-label { margin-bottom: 8px; }
.content-text h2 { margin-bottom: 16px; }
.content-text p  { font-size: 15.5px; margin-bottom: 22px; color: var(--text-body); }

.mission-section { background: #fff; }
.mission-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mission-card { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 20px; display: flex; gap: 14px; align-items: flex-start; transition: var(--transition); }
.mission-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.mission-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.mission-card p  { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

.ai-section { background: var(--bg-section); }
.ai-features { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.ai-feature { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border-light); transition: var(--transition); }
.ai-feature:hover { box-shadow: var(--shadow); transform: translateX(6px); }
.ai-feature-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.ai-feature-text p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.trusted-section { background: #fff; }
.trust-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.trust-stat-card { background: var(--off-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: var(--transition); }
.trust-stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.trust-stat-card .icon { font-size: 32px; margin-bottom: 14px; }
.trust-stat-card .num  { font-family: 'Inter', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.trust-stat-card .lbl  { font-size: 14px; color: var(--text-muted); }

.team-section { background: var(--bg-section); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); text-align: center; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.team-img-wrap { height: 200px; overflow: hidden; position: relative; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15,30,69,0.6) 100%); }
.team-body { padding: 20px 16px; }
.team-name { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.team-social { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.team-social a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-muted); transition: var(--transition); }
.team-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===========================
   SCROLL REVEAL
   =========================== */
[data-reveal] { opacity: 0; transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="down"]  { transform: translateY(-30px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].revealed { opacity: 1; transform: none !important; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes gridDrift   { 0% { background-position: 0 0; } 100% { background-position: 60px 60px; } }
@keyframes floatShape  { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-22px) rotate(8deg); } }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes fadeIn      { from{opacity:0} to{opacity:1} }
@keyframes pulse       { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }
@keyframes bounceIn    { 0%{opacity:0;transform:scale(0.6)} 60%{opacity:1;transform:scale(1.05)} 100%{transform:scale(1)} }
@keyframes shimmer     { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes spin        { to { transform: rotate(360deg); } }
@keyframes countUp     { from{opacity:0;transform:scale(0.8)} to{opacity:1;transform:scale(1)} }
@keyframes lineGrow    { from{width:0} to{width:100%} }

/* ===========================
   RESPONSIVE — Global Typography
   =========================== */
@media (min-width: 1440px) { html { font-size: 16px; } }
@media (min-width: 1920px) { html { font-size: 17px; } }
@media (min-width: 2400px) { html { font-size: 18px; } }

/* ===========================
   RESPONSIVE — Ultra Wide (1921px+)
   =========================== */
@media (min-width: 1921px) {
  .container   { max-width: 1400px; }
  .hero        { min-height: 720px; }
  .hero h1     { font-size: 64px; line-height: 1.2; }
  .hero-subtitle { font-size: 20px; }
  .hero-desc   { font-size: 16px; max-width: 600px; }
  .section-title { font-size: 42px; }
  .cta-left h2 { font-size: 46px; }
  .page-hero h1 { font-size: 4.2rem; }
  .section, .content-section { padding: 110px 0; }
  .team-grid   { grid-template-columns: repeat(4,1fr); gap: 32px; }
  .pricing-grid { gap: 32px; }
  body { font-size: 17px; }
}

/* ===========================
   RESPONSIVE — 2400px+
   =========================== */
@media (min-width: 2401px) {
  .container   { max-width: 1800px; }
  .page-hero h1 { font-size: 5rem; }
  .section-title { font-size: 3.2rem; }
  .section, .content-section { padding: 130px 0; }
  .team-grid   { gap: 40px; }
  .pricing-grid { gap: 40px; }
  .compare-table { font-size: 16px; }
  body { font-size: 18px; }
}

/* ===========================
   RESPONSIVE — Large Desktop (1441–1920px)
   =========================== */
@media (max-width: 1920px) and (min-width: 1441px) {
  .container   { max-width: 1280px; }
  .hero h1     { font-size: 56px; }
  .section-title { font-size: 38px; }
}

/* ===========================
   RESPONSIVE — Laptop/Desktop (≤1440px)
   =========================== */
@media (max-width: 1440px) {
  .container      { max-width: 1140px; }
  .hero h1        { font-size: 46px; }
  .built-grid     { gap: 40px; }
  .solution-grid  { gap: 40px; }
}

/* ===========================
   RESPONSIVE — 1365px+ Overrides
   =========================== */
@media (min-width: 1365px) {
   div#featured-steps-gridss .step-icon {
    height: 220px; /* set same height for all */
    overflow: hidden;
}

div#featured-steps-gridss .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /*margin: 20px 0;*/
    transition: transform 0.5s ease;
}
div#featured-steps-gridss h3 {
    margin-bottom: 20px;
}
    div#featured-steps-gridss {
    grid-template-columns: repeat(3, 1fr);
}
  .built-features    { grid-template-columns: repeat(3, 1fr) !important; }
  .steps-grid        { grid-template-columns: repeat(4, 1fr); }
  .comparison-wrap   { flex-direction: row !important; }
  .problem-cards     { grid-template-columns: repeat(3, 1fr) !important; }
  .hero-buttons      { justify-content: start !important; }
  .hero-stats        { justify-content: start !important; }
  .hero h1           { font-size: 48px !important; line-height: 1.2 !important; }
  .hero .container   { flex-direction: row !important; text-align: start !important; padding: 20px 20px; }
  div#hero_image_section { width: 55% !important; margin-left: 20px; margin-right: 0 !important; }
}

/* ===========================
   RESPONSIVE — Small Laptop/Tablet Landscape (769–1024px)
   =========================== */
@media (max-width: 1024px) {
  .container     { max-width: 960px; }
  .hero { min-height: auto; }
  .hero .container { flex-direction: column; text-align: center; padding: 20px 20px; }
  .hero h1       { font-size: 40px; line-height: 62px !important; }
  .hero-content  { max-width: 100%; padding: 20px 0; }
  .hero-buttons  { justify-content: center; }
  .hero-stats    { justify-content: center; }
  p#hero-descss  { max-width: 100%; }
  div#hero_image_section { width: 100%; margin-left: 20px; margin-right: 20px; }
  #hero_image_section    { width: 80%; margin: 20px auto 0; }
  .solution-grid, .built-grid, .sp-grid { grid-template-columns: 1fr; }
  .comparison-wrap { flex-direction: column; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .problem-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .built-features { grid-template-columns: repeat(2, 1fr); }
  .hiw-hero-visual { grid-template-columns: 1fr; gap: 48px; }
  .value-grid    { grid-template-columns: 1fr 1fr; }
  .prob-sol-grid { grid-template-columns: 1fr; }
  .sp-numbers    { grid-template-columns: repeat(2,1fr); }
  .faq-layout    { grid-template-columns: 1fr; }
  .faq-sidebar   { position: static; }
  .faq-nav       { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .legal-layout  { grid-template-columns: 1fr; }
  .legal-sidebar { display: none; }
}

/* ===========================
   RESPONSIVE — Tablet (481–768px)
   =========================== */
@media (max-width: 768px) {
    .contact-items {
   margin-top: 20px !important;
}
    .faq-section {
    padding: 50px 0 !important;
}
        .testi-controls {
       margin-top: 0px !important;
    }
    div#compare-pricess br {
    display: block;
}
  .cta-banner-text h2 {
   text-align: center;
}    
  .container        { padding: 0 18px; }
  .top-bar .container { flex-direction: row; gap: 8px; flex-wrap: wrap; }
  .nav              { display: none; }
  .hero h1          { font-size: 32px; line-height: 1.3; }
  .hero-subtitle    { font-size: 15px; }
  .hero-desc        { font-size: 13.5px; max-width: 100%; }
  .hero-buttons     { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .problem-cards    { grid-template-columns: 1fr; }
  .solution-grid    { grid-template-columns: 1fr; }
  .built-grid       { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; text-align: left; }
  .footer-desc      { margin: 0; }
  .footer-social    { justify-content: start; padding-top: 20px; }
  .logo             { justify-content: start !important; }
  .cta-inner        { flex-direction: column; }
  .comparison-wrap  { gap: 10px; }
  .compare-card.us  { transform: none; }
  div#bottom_cta_section_inner { flex-direction: column; gap: 18px; align-items: center; text-align: center; }
  .cta-checks       { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; }
  div#hero_image_section { width: 100% !important; margin-left: 20px !important; margin-right: 20px !important; }
  .testi-wrapper    { grid-template-columns: 1fr; }
  .testi-controls   { flex-direction: row; gap: 8px; }
  .testi-grid       { grid-template-columns: 1fr; }
  .trust-stats      { grid-template-columns: 1fr; gap: 14px; }
  .section, .section-sm, .content-section { padding: 56px 0; }
  .page-hero        { padding: 70px 0 56px; }
  .page-hero h1     { font-size: 2rem; }
  .hero-cta-wrap    { flex-direction: column; align-items: stretch; }
  .hero-cta-wrap .btn, .hero-cta-wrap .btn-play { justify-content: center; }
  .cta-banner       { padding: 48px 0; }
  .cta-banner-inner { flex-direction: column; gap: 24px; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .content-grid     { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .mission-highlights { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: 1fr 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .compare-section, .why-section { padding: 56px 0; }
  .why-grid         { grid-template-columns: 1fr; }
  .hiw-hero-visual  { grid-template-columns: 1fr; gap: 40px; }
  .steps-timeline::before { left: 26px; }
  .value-grid       { grid-template-columns: 1fr; }
  .pricing-toggle   { justify-content: center; }
  .mobile-nav.open ul#menu-main-menu-1 { display: flex !important; flex-direction: column !important; gap: 10px !important; justify-content: center !important; align-items: center !important; }
  .nav ul li a, .mobile-nav ul li a { color: #fff !important; }
  .mobile-nav.open  { display: flex !important; justify-content: start !important; padding-top: 85px !important; }
}

/* ===========================
   RESPONSIVE — Mobile (≤480px)
   =========================== */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero { padding: 20px 0; min-height: auto; }
  .hero h1 { font-size: 26px; line-height: 42px; }
  .hero-content { padding: 50px 0; }
  .hero-subtitle { font-size: 14px; }
  .hero-desc { font-size: 13px; }
  .hero-buttons { gap: 10px; }
  .hero-stats { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
  .hero-stat  { width: calc(50% - 6px); }
  div#hero_image_section { width: 100%; margin-left: 0; }
  #hero_image_section    { width: 100%; }
  .section { padding: 50px 0; }
  .section-title { font-size: 26px; text-align: center; }
  .cta-left h2   { font-size: 26px; text-align: center; }
  .cta-left .cta-label { text-align: center !important; }
  .cta-left p    { text-align: center; }
  .compare-price { font-size: 32px; text-align: center !important; }
  .savings-card .save-pct { font-size: 36px; }
  .built-image img { height: 220px; }
  .built-features  { grid-template-columns: repeat(1, 1fr) !important; gap: 0 !important; }
  .built-grid      { gap: 0 !important; }
  .dash-top        { grid-template-columns: 1fr !important; }
  .solution-grid, .built-grid, .sp-grid { grid-template-columns: repeat(1, 1fr) !important; }
  .steps-grid      { grid-template-columns: repeat(1, 1fr) !important; }
  .problem-cards   { grid-template-columns: repeat(1, 1fr) !important; }
  .btn-primary     { padding: 20px 50px !important; margin-bottom: 20px !important; }
  h1#hero-headingh1s { line-height: 42px !important; }
  br { display: none; }
  .testi-controls  { flex-direction: row !important; }
  .faq-question    { font-size: 12px !important; }
  span.section-label { text-align: center; }
  .logo            { justify-content: center; }
  div#logo_sectionss { justify-content: start !important; }
  .footer-social   { justify-content: center; padding-top: 20px; }
  div#footer-socialss { justify-content: start !important; }
  .footer-bottom   { align-items: center; flex-direction: column; }
  div#bottom_cta_section_inner { gap: 12px; padding-bottom: 15px; }
  .cta-checks      { flex-direction: column; gap: 8px; font-size: 13px; }
  .nav ul li a, .mobile-nav ul li a { color: #fff !important; font-size: 20px; font-weight: 500 !important; }
  .mobile-nav.open { display: flex !important; justify-content: start !important; padding-top: 85px !important; }
  .team-grid       { grid-template-columns: 1fr 1fr; }
}
.faq-answer p {
    padding-left: 10px;
}


 /* ============================================================
       ai-pricing-manager — CSS RESET & BASE
       ============================================================ */
    #ai-pricing-manager *,
    #ai-pricing-manager *::before,
    #ai-pricing-manager *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* ============================================================
       ai-pricing-manager — CSS VARIABLES
       ============================================================ */
    #ai-pricing-manager {
      --primary:      #e85d26;
      --primary-dark: #1d4ed8;
      --accent:       #0f172a;
      --green:        #22c55e;
      --red:          #ef4444;
      --bg:           #f8fafc;
      --surface:      #ffffff;
      --text:         #0f172a;
      --text-muted:   #64748b;
      --border:       #e2e8f0;
      --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
      --shadow-md:    0 4px 24px rgba(37,99,235,.13);
      --shadow-lg:    0 16px 48px rgba(37,99,235,.18);
      --radius:       16px;
      --radius-sm:    10px;
      font-family: 'inter', sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }

    /* ============================================================
       ai-pricing-manager — UTILITY
       ============================================================ */
    #ai-pricing-manager div#onesimplecontainerss {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 24px;
    }
    #ai-pricing-manager .container{
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    #ai-pricing-manager .section {
      padding: 80px 0;
    }

    #ai-pricing-manager .section-label {
      display: inline-block;
      color: var(--primary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 99px;
      margin-bottom: 14px;
    }

    #ai-pricing-manager .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 800;
      line-height: 1.18;
      color: var(--text);
    }

    #ai-pricing-manager .section-title span {
      color: var(--primary);
    }

    #ai-pricing-manager .section-subtitle {
      color: var(--text-muted);
      font-size: 16px;
      margin-top: 12px;
      max-width: 540px;
    }

    #ai-pricing-manager .divider {
      width: 48px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 4px;
      margin: 16px 0 20px;
    }

    #ai-pricing-manager .center { text-align: center; }
    #ai-pricing-manager .center .divider { margin-left: auto; margin-right: auto; }
    #ai-pricing-manager .center .section-subtitle { margin-left: auto; margin-right: auto; }


    /* ============================================================
       ai-pricing-manager — PRICING CARD
       ============================================================ */
    #ai-pricing-manager .pricing-section {
      background: var(--bg);
    }

    #ai-pricing-manager .pricing-card-wrap {
      display: flex;
      justify-content: center;
      margin-top: 48px;
    }

    #ai-pricing-manager .pricing-card {
      background: var(--surface);
      border: 2px solid var(--primary);
      border-radius: var(--radius);
      padding: 48px 44px;
      max-width: 440px;
      width: 100%;
      text-align: center;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    #ai-pricing-manager .pricing-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    #ai-pricing-manager .popular-badge {
      display: inline-block;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 99px;
      margin-bottom: 20px;
    }

    #ai-pricing-manager .plan-name {
      font-family: 'Syne', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 6px;
    }

    #ai-pricing-manager .plan-price {
      font-family: 'Syne', sans-serif;
      font-size: 68px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      margin: 16px 0 4px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 2px;
    }

    #ai-pricing-manager .plan-price .currency {
      font-size: 28px;
      margin-top: 12px;
      font-weight: 700;
    }

    #ai-pricing-manager .plan-price .period {
      font-size: 20px;
      font-weight: 500;
      color: var(--text-muted);
      align-self: flex-end;
      margin-bottom: 8px;
    }

    #ai-pricing-manager .plan-desc {
      color: var(--text-muted);
      font-size: 15px;
      margin-bottom: 24px;
    }

    #ai-pricing-manager .plan-divider {
      height: 1px;
      background: var(--border);
      margin: 24px 0;
    }

    #ai-pricing-manager .plan-features {
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    #ai-pricing-manager .plan-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--text);
    }

    #ai-pricing-manager .fi {
      width: 22px; height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      flex-shrink: 0;
    }

    #ai-pricing-manager .fi.yes {
      background: rgba(34,197,94,.12);
      color: var(--green);
    }

    #ai-pricing-manager .plan-btn {
      display: block;
      width: 100%;
      background: #e85d26;
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      padding: 15px 24px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 18px rgba(37,99,235,.35);
    }

    #ai-pricing-manager .plan-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37,99,235,.45);
    }

    /* ============================================================
       ai-pricing-manager — TRUST BADGES
       ============================================================ */
    #ai-pricing-manager .trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      margin-top: 36px;
      flex-wrap: wrap;
    }

    #ai-pricing-manager .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    #ai-pricing-manager .trust-item i { color: var(--green); font-size: 15px; }
     
     .aia-outcome-inner {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
}
     
     
    /* ============================================================
       ai-pricing-manager — WHY SECTION
       ============================================================ */
    #ai-pricing-manager .why-section {
      background: #fff;
    }

    #ai-pricing-manager .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 24px;
      margin-top: 44px;
    }

    #ai-pricing-manager .why-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: box-shadow .2s, transform .2s;
    }

    #ai-pricing-manager .why-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    #ai-pricing-manager .why-icon {
      font-size: 32px;
      margin-bottom: 14px;
    }

    #ai-pricing-manager .why-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text);
    }

    #ai-pricing-manager .why-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }


    /* ============================================================
       ai-pricing-manager — RESPONSIVE
       ============================================================ */
    @media (max-width: 600px) {
      #ai-pricing-manager .pricing-card { padding: 36px 24px; }
      #ai-pricing-manager .plan-price { font-size: 54px; }
    }
    
    
    
    
    
    
     /* ---- Reset scoped to section ---- */
    #featured-home-action *,
    #featured-home-action *::before,
    #featured-home-action *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    #featured-home-action img { max-width: 100%; display: block; }
    #featured-home-action ul  { list-style: none; }
    #featured-home-action a   { text-decoration: none; color: inherit; }

    /* ---- CSS Variables ---- */
    #featured-home-action {
      --primary:        #e85d26;
      --primary-dark:   #c94e1c;
      --primary-light:  #fff0ea;
      --navy:           #0f1e45;
      --navy-mid:       #1a2e5a;
      --navy-light:     #2d4a8a;
      --gold:           #f5a623;
      --green:          #0fba81;
      --green-light:    #e6faf4;
      --white:          #ffffff;
      --off-white:      #f8fafd;
      --bg-section:     #f3f6fb;
      --text-body:      #374151;
      --text-muted:     #6b7280;
      --text-light:     #9ca3af;
      --border:         #e5e7eb;
      --border-light:   #f0f2f5;
      --shadow-sm:      0 2px 8px rgba(15,30,69,0.07);
      --shadow:         0 4px 20px rgba(15,30,69,0.10);
      --shadow-md:      0 8px 32px rgba(15,30,69,0.14);
      --shadow-lg:      0 16px 56px rgba(15,30,69,0.18);
      --radius:         10px;
      --radius-lg:      16px;
      --radius-xl:      24px;
      --transition:     all 0.35s cubic-bezier(0.4,0,0.2,1);

      font-family: 'Inter', sans-serif;
      color: var(--text-body);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    /* ---- Container ---- */
    #featured-home-action .fha-container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ---- Section Label ---- */
    #featured-home-action .fha-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'inter', sans-serif;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--primary);
      margin-bottom: 14px;
    }
    #featured-home-action .fha-label::before {
      content: '';
      width: 22px; height: 2px;
      background: var(--primary);
      border-radius: 2px;
      flex-shrink: 0;
    }

    /* ---- Section Title ---- */
    #featured-home-action .fha-title {
      font-family: 'inter', sans-serif;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.15;
    }
    #featured-home-action .fha-title span { color: var(--primary); }

    /* ---- Divider ---- */
    #featured-home-action .fha-divider {
      width: 56px; height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--gold));
      border-radius: 4px;
      margin: 16px 0 0;
    }
    #featured-home-action .fha-divider.center { margin: 16px auto 0; }

    /* ---- Scroll Reveal ---- */
    #featured-home-action [data-fha-reveal] {
      opacity: 0;
      transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
                  transform 0.7s cubic-bezier(0.4,0,0.2,1);
    }
    #featured-home-action [data-fha-reveal="up"]    { transform: translateY(36px); }
    #featured-home-action [data-fha-reveal="left"]  { transform: translateX(-36px); }
    #featured-home-action [data-fha-reveal="right"] { transform: translateX(36px); }
    #featured-home-action [data-fha-reveal="scale"] { transform: scale(0.93); }
    #featured-home-action [data-fha-reveal].fha-revealed {
      opacity: 1;
      transform: none !important;
    }
    #featured-home-action [data-fha-delay="1"] { transition-delay: 0.1s; }
    #featured-home-action [data-fha-delay="2"] { transition-delay: 0.2s; }
    #featured-home-action [data-fha-delay="3"] { transition-delay: 0.3s; }
    #featured-home-action [data-fha-delay="4"] { transition-delay: 0.4s; }
    #featured-home-action [data-fha-delay="5"] { transition-delay: 0.5s; }

    /* ============================================================
       SECTION A — AI IN ACTION
       ============================================================ */
    #featured-home-action .aia-section {
      background: var(--navy);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    /* Background grid texture */
    #featured-home-action .aia-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 56px 56px;
      pointer-events: none;
    }
    /* Glow blobs */
    #featured-home-action .aia-section::after {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,93,38,0.12) 0%, transparent 70%);
      top: -200px; right: -150px;
      pointer-events: none;
    }
    #featured-home-action .aia-blob {
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(52,97,212,0.1) 0%, transparent 70%);
      bottom: -100px; left: -80px;
      pointer-events: none;
    }

    /* Section header */
    #featured-home-action .aia-header {
      text-align: center;
      margin-bottom: 64px;
      position: relative; z-index: 1;
    }
    #featured-home-action .aia-header .fha-label { color: #ffb68a; }
    #featured-home-action .aia-header .fha-label::before { background: #ffb68a; }
    #featured-home-action .aia-header .fha-title {
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      color: #fff;
    }
    #featured-home-action .aia-header .fha-title span { color: var(--primary); }
    #featured-home-action .aia-header p {
      font-size: 16px;
      color: rgba(255,255,255,0.6);
      max-width: 520px;
      margin: 16px auto 0;
      line-height: 1.75;
    }
    #featured-home-action .aia-header .fha-divider { background: linear-gradient(90deg, var(--primary), #ffb68a); }

    /* Scenario cards grid */
    #featured-home-action .aia-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative; z-index: 1;
    }

    /* Individual AI Action Card */
    #featured-home-action .aia-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-xl);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(4px);
    }
    #featured-home-action .aia-card:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(232,93,38,0.4);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    /* Scenario pill */
    #featured-home-action .aia-scenario {
      padding: 20px 24px 0;
    }
    #featured-home-action .aia-scenario-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(232,93,38,0.18);
      border: 1px solid rgba(232,93,38,0.3);
      color: #ffb68a;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 5px 14px;
      border-radius: 30px;
    }
    #featured-home-action .aia-scenario-pill::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--primary);
      flex-shrink: 0;
    }
    #featured-home-action .aia-card-title {
      font-family: 'inter', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-top: 12px;
      padding: 0 0 0 8px;
    }

    /* Card image */
    #featured-home-action .aia-img-wrap {
      margin: 18px 24px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 180px;
      position: relative;
    }
    #featured-home-action .aia-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    #featured-home-action .aia-card:hover .aia-img-wrap img { transform: scale(1.05); }
    /* Image overlay gradient */
    #featured-home-action .aia-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(15,30,69,0.5) 100%);
    }
    /* Floating badge on image */
    #featured-home-action .aia-img-badge {
      position: absolute;
      bottom: 12px; left: 12px;
      background: rgba(15,30,69,0.85);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      padding: 8px 12px;
      display: flex; align-items: center; gap: 8px;
      z-index: 1;
      backdrop-filter: blur(8px);
    }
    #featured-home-action .aia-img-badge .badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--green);
      animation: fhaPluse 1.6s ease infinite;
      flex-shrink: 0;
    }
    @keyframes fhaPluse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
    #featured-home-action .aia-img-badge span {
      font-size: 11px; font-weight: 700;
      color: rgba(255,255,255,0.85);
      white-space: nowrap;
    }

    /* AI Action list */
    #featured-home-action .aia-actions {
      padding: 0 24px;
      flex: 1;
    }
    #featured-home-action .aia-actions-label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.4);
      margin-bottom: 10px;
    }
    #featured-home-action .aia-actions-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    #featured-home-action .aia-actions-list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 13.5px;
      color: rgba(255,255,255,0.75);
      line-height: 1.5;
    }
    #featured-home-action .aia-actions-list li::before {
      content: '';
      width: 18px; height: 18px;
      min-width: 18px;
      border-radius: 50%;
      background: rgba(15,186,129,0.2);
      border: 1px solid rgba(15,186,129,0.4);
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%230fba81' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 10px;
    }

    /* Outcome box */
    #featured-home-action .aia-outcome {
      margin: 18px 24px 24px;
      background: linear-gradient(135deg, rgba(232,93,38,0.15), rgba(245,166,35,0.1));
      border: 1px solid rgba(232,93,38,0.25);
      border-radius: var(--radius-lg);
      padding: 14px 16px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    #featured-home-action .aia-outcome-icon {
      width: 32px; height: 32px; min-width: 32px;
      background: rgba(232,93,38,0.2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px;
    }
    #featured-home-action .aia-outcome-label {
      font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1.5px;
      color: var(--primary);
      margin-bottom: 3px;
    }
    #featured-home-action .aia-outcome p {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      line-height: 1.55;
      padding-top:10px;
    }

    /* ============================================================
       MEDIA QUERIES
       ============================================================ */

    /* Mobile: max-width 767px */
    @media (max-width: 767px) {
      #featured-home-action .aia-section,
      #featured-home-action .feat-section {
        padding: 60px 0;
      }
      #featured-home-action .aia-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      #featured-home-action .aia-header .fha-title { font-size: 1.75rem; }
      #featured-home-action .aia-stats { gap: 28px; }
      #featured-home-action .aia-stat-num { font-size: 2rem; }
      #featured-home-action .feat-grid-top {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      #featured-home-action .feat-grid-bottom {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      #featured-home-action .feat-img-wrap { height: 180px; }
      #featured-home-action .feat-header .fha-title { font-size: 1.75rem; }
    }

    /* Tablet: 768px to 991px */
    @media (min-width: 768px) and (max-width: 991px) {
      #featured-home-action .aia-section,
      #featured-home-action .feat-section {
        padding: 72px 0;
      }
      #featured-home-action .aia-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 540px;
        margin: 0 auto;
      }
      #featured-home-action .feat-grid-top {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      #featured-home-action .feat-grid-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
    }

    /* Above Tablet: 992px to 1024px */
    @media (min-width: 992px) and (max-width: 1024px) {
      #featured-home-action .fha-container { max-width: 960px; }
      #featured-home-action .aia-grid { gap: 20px; }
      #featured-home-action .feat-grid-top { gap: 20px; }
      #featured-home-action .feat-grid-bottom { gap: 20px; }
      #featured-home-action .aia-card-title { font-size: 16px; }
    }

    /* 1025px to 1200px */
    @media (min-width: 1025px) and (max-width: 1200px) {
      #featured-home-action .fha-container { max-width: 1100px; }
    }

    /* Laptop: 1201px to 1440px — default container 1140px */

    /* 1920px */
    @media (min-width: 1921px) {
      #featured-home-action .fha-container { max-width: 1400px; }
      #featured-home-action .aia-section,
      #featured-home-action .feat-section { padding: 120px 0; }
      #featured-home-action .aia-header .fha-title  { font-size: 3.2rem; }
      #featured-home-action .feat-header .fha-title { font-size: 3rem; }
      #featured-home-action .aia-grid { gap: 36px; }
      #featured-home-action .feat-grid-top  { gap: 36px; }
      #featured-home-action .feat-grid-bottom { gap: 36px; }
      #featured-home-action .aia-img-wrap { height: 220px; }
      #featured-home-action .feat-img-wrap { height: 260px; }
      #featured-home-action .feat-card-title { font-size: 21px; }
      #featured-home-action .feat-card-desc  { font-size: 16px; }
    }

    /* 2400px */
    @media (min-width: 2401px) {
      #featured-home-action .fha-container { max-width: 1800px; }
      #featured-home-action .aia-section,
      #featured-home-action .feat-section { padding: 140px 0; }
      #featured-home-action .aia-header .fha-title  { font-size: 3.8rem; }
      #featured-home-action .feat-header .fha-title { font-size: 3.5rem; }
      #featured-home-action .aia-grid { gap: 44px; }
      #featured-home-action .feat-grid-top  { gap: 44px; }
      #featured-home-action .feat-grid-bottom { gap: 44px; }
      #featured-home-action .aia-img-wrap  { height: 260px; }
      #featured-home-action .feat-img-wrap { height: 300px; }
      #featured-home-action .feat-card-title { font-size: 24px; }
      #featured-home-action .feat-card-desc  { font-size: 17px; }
      #featured-home-action .aia-card-title  { font-size: 22px; }
    }
    
    section#features-main-section {
    padding-top: 0px;
}
section#section-social-proof {
    padding-top: 0px;
    padding-bottom:0px;
}
a#btn-enquire-headerss:hover {
    color: #fff !important;
    text-decoration: none;
}
section#sectionsocialprooffaqs {
    padding: 0 0 72px 0;
}