/*
Theme Name: Born To Count
Theme URI: https://borntocount.com
Author: A2 Webcraft
Author URI: https://a2webcraft.com
Description: Professional Accounting & Business Advisory Services Theme
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: borntocount
*/

/* =============================================
   CSS VARIABLES - COLOR PALETTE
   ============================================= */
:root {
  --primary:       #1b2a4d;
  --primary-dark:  #101a33;
  --primary-light: #2f4472;
  --accent:        #c9a15b;
  --accent-dark:   #a8813f;
  --accent-light:  #ddc188;
  --white:         #ffffff;
  --off-white:     #f5f6f8;
  --light-gray:    #eceef2;
  --text-dark:     #1a2030;
  --text-body:     #4a5165;
  --text-muted:    #7a8195;
  --border:        #d8dce4;
  --shadow:        0 4px 24px rgba(27, 42, 77, 0.10);
  --shadow-lg:     0 8px 40px rgba(27, 42, 77, 0.16);
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--text-dark);
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.title-underline {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px auto 16px;
}
.title-underline.left { margin-left: 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 161, 91, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg { padding: 16px 34px; font-size: 15px; }

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.topbar-contact a:hover { color: var(--accent); }
.topbar-contact svg { flex-shrink: 0; }
.topbar-tagline { font-size: 12px; color: var(--accent); font-weight: 500; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(27,42,77,0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-text h1 {
  font-size: 20px;
  color: var(--primary);
  margin: 0;
  line-height: 1.1;
}
.logo-text span {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--accent);
  background: rgba(201, 161, 91, 0.06);
}

.header-cta .btn { padding: 10px 22px; font-size: 13px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   LANDING SPLASH SECTION
   ============================================= */
.landing-splash {
  position: relative;
  width: 100%;
      height: 60vh;
    min-height: 403px;
  overflow: hidden;
  background: var(--primary-dark);
}
.landing-splash-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.landing-splash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,26,51,.60) 0%, rgba(16,26,51,.28) 42%, transparent 68%);
  pointer-events: none;
}
.landing-splash-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.landing-splash-text {
  padding-left: clamp(24px, 7vw, 100px);
  max-width: 620px;
}
.landing-splash-text h2 {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  font-size: clamp(28px, 5.2vw, 58px);
  line-height: 1.18;
  margin: 0;
}
.landing-splash-line { display: block; }
.landing-splash-underline {
  display: block;
  width: 130px;
  height: 2px;
  background: var(--accent-light);
  margin-top: 26px;
}

@media (max-width: 600px) {
  .landing-splash { height: 100svh; }
  .landing-splash-text { padding-left: 24px; padding-right: 24px; }
  .landing-splash-underline { width: 90px; margin-top: 18px; }
}

/* =============================================
   MULTI-JURISDICTION TABLE
   ============================================= */
.jur-section { background: var(--off-white); padding: 70px 0; }
.jur-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.jur-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 56px 32px 44px;
  text-align: center;
}
.jur-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,161,91,.12) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .6;
}
.jur-eyebrow {
  position: relative; z-index: 1;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}
.jur-title {
  position: relative; z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; line-height: 1.22;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--white);
  margin: 0;
}
.jur-title span { display: block; color: var(--accent-light); }
.jur-sub {
  position: relative; z-index: 1;
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255,255,255,.75);
}

.jur-table-wrap { background: var(--white); }
.jur-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.jur-table { width: 100%; min-width: 760px; border-collapse: collapse; }

.jur-th, .jur-td {
  padding: 18px 22px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  white-space: nowrap;
}
.jur-th--service, .jur-td--service { text-align: left; white-space: normal; }

.jur-table thead th { background: var(--off-white); vertical-align: middle; }
.jur-th--service { font-weight: 700; letter-spacing: .5px; text-transform: uppercase; font-size: 12.5px; color: var(--primary); }
.jur-flag { display: block; font-size: 26px; line-height: 1; margin-bottom: 6px; }
.jur-country { display: block; font-weight: 700; letter-spacing: .4px; font-size: 12px; text-transform: uppercase; color: var(--primary); }

.jur-service-label {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--primary); font-size: 14.5px;
}
.jur-service-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(201,161,91,.14);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.jur-service-icon svg { width: 18px; height: 18px; }

.jur-check { display: inline-flex; color: #1f8a4c; }
.jur-dash { color: var(--text-muted); font-weight: 600; }
.jur-text { color: var(--text-body); font-weight: 500; font-size: 13.5px; }

.jur-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 22px 26px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.jur-footer-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-muted); line-height: 1.5;
}
.jur-footer-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.jur-footer-icon--dark { background: var(--primary); border-color: var(--primary); color: var(--white); }
.jur-footer a { color: var(--accent-dark); font-weight: 600; }
.jur-footer a:hover { color: var(--accent); text-decoration: underline; }
.jur-divider { width: 1px; align-self: stretch; background: var(--border); }

@media (max-width: 768px) {
  .jur-section { padding: 48px 0; }
  .jur-banner { padding: 40px 22px 34px; }
  .jur-footer { flex-direction: column; align-items: flex-start; }
  .jur-divider { display: none; }
}
@media (max-width: 480px) {
  .jur-card { border-radius: 16px; }
  .jur-th, .jur-td { padding: 14px 16px; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-bg-shape {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: rgba(201, 161, 91, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-shape-2 {
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,98,26,0.15);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(232,98,26,0.25);
  margin-bottom: 20px;
  width: fit-content;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title .accent-text {
  color: var(--accent);
  display: block;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 30px;
  line-height: 1.75;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.form-card-title {
  font-size: 20px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 6px;
}
.form-card-line {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.form-field {
  position: relative;
  margin-bottom: 14px;
}
.form-field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 16px;
  height: 16px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-field textarea {
  resize: none;
  min-height: 90px;
  padding-top: 12px;
}
.form-field.no-icon input,
.form-field.no-icon select,
.form-field.no-icon textarea {
  padding-left: 14px;
}

/* Contact Form 7 compatibility — normalizes the extra wrapper span
   CF7 adds around each field so it still fills .form-field's width. */
.form-field .wpcf7-form-control-wrap { display: block; width: 100%; }
.hero-form-card .wpcf7-not-valid-tip {
  display: block; color: #dc3545; font-size: 12px; margin-top: 4px;
}
.hero-form-card .wpcf7-response-output {
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 13px; margin: 0 0 14px;
}
.hero-form-card form.sent .wpcf7-response-output {
  background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7;
}
.hero-form-card form.invalid .wpcf7-response-output,
.hero-form-card form.unaccepted .wpcf7-response-output,
.hero-form-card form.failed .wpcf7-response-output {
  background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  border-radius: var(--radius);
  border: none;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,98,26,0.35);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: var(--white);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.service-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-link { color: var(--white); }
.service-card:hover .service-icon { background: rgba(255,255,255,0.15); }
.service-card:hover .service-icon svg { color: var(--white); }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-icon svg { width: 28px; height: 28px; color: var(--primary); transition: color var(--transition); }

.service-title {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}
.service-link:hover { gap: 10px; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  background: var(--off-white);
  padding: 80px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}

.why-heading { text-align: left; }
.why-heading .section-title { text-align: left; font-size: clamp(26px, 3vw, 36px); }
.why-heading p { color: var(--text-body); margin-top: 16px; font-size: 15px; }

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(27, 42, 77, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.why-card:hover .why-card-icon { background: var(--accent); }
.why-card-icon svg { width: 24px; height: 24px; color: var(--primary); transition: color var(--transition); }
.why-card:hover .why-card-icon svg { color: var(--white); }

.why-card-title {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.why-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section { background: var(--white); padding: 80px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .num { font-size: 32px; font-weight: 700; line-height: 1; display: block; }
.about-badge .lbl { font-size: 12px; opacity: 0.9; margin-top: 4px; }

.about-content .section-title { text-align: left; }
.about-content .title-underline { margin-left: 0; }
.about-content p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-top: 14px; }
.about-content p + p { margin-top: 12px; }

.about-btn { margin-top: 28px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--off-white); padding: 80px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.quote-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,98,26,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.quote-icon svg { width: 20px; height: 20px; color: var(--accent); }

.testimonial-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.author-role { font-size: 12px; color: var(--text-muted); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: rgba(232,98,26,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(232,98,26,0.18);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-icon-wrap svg { width: 32px; height: 32px; color: var(--accent); }

.cta-text-wrap { flex: 1; }
.cta-title { font-size: clamp(22px, 3vw, 30px); color: var(--white); margin-bottom: 8px; }
.cta-desc { font-size: 14px; color: rgba(255,255,255,0.75); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 64px 0 0; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand .logo-text h1 { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-col h4 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a::before {
  content: '›';
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}
.footer-col ul a:hover { color: var(--white); }

.social-links { display: flex; gap: 10px; margin-top: 8px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 500px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-heading { text-align: center; }
  .why-heading .section-title { text-align: center; }
  .why-heading .title-underline { margin: 12px auto 16px; }
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-badge { right: 16px; bottom: -16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .topbar-tagline { display: none; }
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    z-index: 998;
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }

  .hero-features { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-icon-wrap { margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-pad { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-section { padding: 50px 0 60px; }
  .hero-form-card { padding: 28px 20px; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }
}
