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

:root {
  --blue-900: #0c1f3f;
  --blue-800: #0f2b55;
  --blue-700: #1a3d6b;
  --blue-600: #1e4d8c;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: 'Manrope', 'Inter', sans-serif; font-weight: 800; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray-600); line-height: 1.75; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all .2s ease; border: 2px solid transparent; white-space: nowrap; text-align: center; font-family: inherit; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(249,115,22,.4); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,.5); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--blue-700); }
.btn-blue { background: var(--blue-600); color: var(--white); box-shadow: 0 4px 14px rgba(30,77,140,.35); }
.btn-blue:hover { background: var(--blue-700); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--blue-700); }
.btn-white:hover { background: var(--blue-50); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .9rem; }

/* TOP BAR */
.top-bar { background: var(--blue-900); color: var(--white); padding: .6rem 0; font-size: .875rem; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.top-bar a { color: var(--white); font-weight: 600; }
.top-bar a:hover { color: var(--orange); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-icon { display: flex; align-items: center; gap: .4rem; }
.top-bar-icon svg { width: 16px; height: 16px; flex-shrink: 0; }

/* NAVBAR */
.navbar { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 1000; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo-icon { width: 46px; height: 46px; background: var(--blue-600); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-icon svg { width: 26px; height: 26px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-weight: 800; font-size: 1.1rem; color: var(--blue-900); letter-spacing: -.02em; }
.nav-logo-sub { font-size: .72rem; color: var(--gray-600); font-weight: 500; }
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link { padding: .55rem 1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem; color: var(--gray-700); transition: all .15s; position: relative; }
.nav-link:hover { color: var(--blue-600); background: var(--blue-50); }
.nav-link.active { color: var(--blue-600); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: calc(100% + .5rem); left: 0; min-width: 220px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s ease; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: .6rem 1rem; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; color: var(--gray-700); transition: all .15s; }
.nav-dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-600); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: var(--white); overflow-y: auto; padding: 1.5rem; flex-direction: column; gap: 0; transform: translateX(100%); transition: transform .3s ease; }
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu a { display: block; padding: .9rem 1.2rem; border-radius: var(--radius); font-weight: 600; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.mobile-menu a:hover { color: var(--blue-600); background: var(--blue-50); }
.mobile-menu .mobile-section-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); padding: 1rem 1.2rem .3rem; }
.mobile-close { display: flex; justify-content: flex-end; margin-bottom: .5rem; }
.mobile-close button { background: var(--gray-100); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-600) 100%); position: relative; overflow: hidden; padding: 5rem 0 4rem; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 32px 32px; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: var(--white); padding: .45rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 700; margin-bottom: 1.25rem; backdrop-filter: blur(4px); letter-spacing: .04em; text-transform: uppercase; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .text-orange { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 2rem; max-width: 540px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { color: var(--white); }
.hero-stat-num { font-size: 1.7rem; font-weight: 800; display: block; line-height: 1; margin-bottom: .2rem; color: var(--white); }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 500; }

/* HERO FORM CARD */
.hero-form-card { background: var(--white); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-xl); }
.hero-form-card h3 { color: var(--blue-900); margin-bottom: .35rem; font-size: 1.3rem; }
.hero-form-card > p { font-size: .85rem; color: var(--gray-600); margin-bottom: 1.25rem; }
.form-offer { background: linear-gradient(135deg, #fef3c7, #fde68a); border: 1px solid #f59e0b; border-radius: var(--radius); padding: .6rem 1rem; font-size: .82rem; font-weight: 700; color: #92400e; text-align: center; margin-bottom: 1.25rem; }

/* FORMS */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-700); margin-bottom: .35rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: .9rem; font-family: inherit; color: #1f2937 !important; transition: border-color .15s; background: #ffffff !important; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-500); background: var(--white); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; }
.form-privacy { text-align: center; font-size: .73rem; color: var(--gray-500); margin-top: .6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* TRUST STRIP */
.trust-strip { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 1.25rem 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.trust-item svg { color: var(--blue-600); width: 20px; height: 20px; flex-shrink: 0; }
.trust-divider { width: 1px; height: 24px; background: var(--gray-300); }

/* SECTIONS */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark { background: var(--blue-900); }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header .eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-500); margin-bottom: .75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem; transition: all .25s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.service-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon { width: 56px; height: 56px; background: var(--blue-50); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-card-icon svg { width: 28px; height: 28px; color: var(--blue-600); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .6rem; color: var(--gray-900); }
.service-card p { font-size: .875rem; margin-bottom: 1.25rem; }
.service-card-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .875rem; font-weight: 700; color: var(--blue-600); transition: gap .15s; }
.service-card-link:hover { gap: .7rem; }

/* WHY CHOOSE US */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item-icon { width: 48px; height: 48px; background: var(--blue-600); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item-icon svg { width: 24px; height: 24px; color: var(--white); }
.why-item h4 { font-size: 1rem; margin-bottom: .3rem; color: var(--gray-900); }
.why-item p { font-size: .875rem; }
.why-image { background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); border-radius: var(--radius-xl); padding: 3rem 2rem; color: var(--white); position: relative; overflow: hidden; }
.why-image::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.05); top: -80px; right: -80px; }
.why-image h3 { color: var(--white); margin-bottom: .75rem; position: relative; }
.why-image > p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 0; position: relative; }
.why-image-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; position: relative; }
.why-image-stat { text-align: center; background: rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.25rem 1rem; }
.why-image-stat .num { font-size: 2rem; font-weight: 800; display: block; color: var(--white); line-height: 1; margin-bottom: .35rem; }
.why-image-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.75); }

/* PROMO SECTION */
.promo-section { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); padding: 3.5rem 0; }
.promo-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.promo-badge { background: rgba(255,255,255,.2); border: 2px dashed rgba(255,255,255,.5); border-radius: var(--radius-xl); padding: 1.5rem 2.5rem; text-align: center; color: var(--white); flex-shrink: 0; }
.promo-badge .amount { font-size: 3.5rem; font-weight: 900; line-height: 1; display: block; }
.promo-badge .label { font-size: 1rem; font-weight: 600; opacity: .9; }
.promo-text { color: var(--white); flex: 1; min-width: 240px; }
.promo-text h2 { color: var(--white); margin-bottom: .75rem; }
.promo-text p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 1.5rem; }
.promo-fine { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .5rem; }

/* AREA CARDS */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.area-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 1.1rem 1.25rem; display: flex; align-items: center; gap: .75rem; transition: all .2s; }
.area-card:hover { border-color: var(--blue-400); background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area-card svg { width: 18px; height: 18px; color: var(--blue-500); flex-shrink: 0; }
.area-card span { font-weight: 600; font-size: .9rem; color: var(--gray-700); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.review-stars svg { width: 20px; height: 20px; color: #f59e0b; }
.review-text { font-size: .9rem; color: var(--gray-700); margin-bottom: 1.25rem; font-style: italic; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-600); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.review-info .review-name { font-weight: 700; font-size: .9rem; color: var(--gray-800); display: block; }
.review-info .review-meta { font-size: .78rem; color: var(--gray-500); display: block; margin-top: .15rem; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-question { width: 100%; background: var(--white); border: none; padding: 1.25rem 1.5rem; text-align: left; font-family: inherit; font-size: .95rem; font-weight: 700; color: var(--gray-800); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: background .15s; }
.faq-question:hover { background: var(--blue-50); }
.faq-question.active { background: var(--blue-50); color: var(--blue-700); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s, background .25s; }
.faq-question.active .faq-icon { transform: rotate(45deg); background: var(--blue-600); }
.faq-question.active .faq-icon svg { color: var(--white); }
.faq-icon svg { width: 16px; height: 16px; color: var(--blue-600); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--gray-700); line-height: 1.7; background: var(--white); }
.faq-answer.open { display: block; }

/* CERTS */
.certs-row { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cert-badge { display: flex; align-items: center; gap: .75rem; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: .85rem 1.5rem; box-shadow: var(--shadow-sm); }
.cert-badge svg { width: 28px; height: 28px; color: var(--blue-600); flex-shrink: 0; }
.cert-badge span { font-weight: 700; font-size: .875rem; color: var(--gray-700); }

/* EMERGENCY BANNER */
.emergency-banner { background: linear-gradient(135deg, #dc2626, #b91c1c); color: var(--white); padding: 1rem 0; text-align: center; }
.emergency-banner p { color: var(--white); font-size: .9rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: .75rem; flex-wrap: wrap; margin: 0; }
.emergency-banner a { color: var(--white); font-weight: 800; text-decoration: underline; }

/* BREADCRUMB */
.breadcrumb { padding: .85rem 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.breadcrumb-list { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .82rem; }
.breadcrumb-list a { color: var(--blue-600); font-weight: 500; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-400); }
.breadcrumb-current { color: var(--gray-600); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); padding: 3.5rem 0 3rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 32px 32px; }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 1.75rem; }
.page-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* CONTENT GRID */
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.content-body h2 { font-size: 1.85rem; margin-bottom: 1rem; margin-top: 2.5rem; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.25rem; margin-bottom: .75rem; margin-top: 2rem; color: var(--blue-800); }
.content-body p { margin-bottom: 1.1rem; }
.content-body ul { margin-bottom: 1.25rem; padding-left: 1.25rem; list-style: disc; }
.content-body ul li { color: var(--gray-700); margin-bottom: .4rem; font-size: .95rem; }
.content-body a { color: var(--blue-600); text-decoration: underline; }

/* SIDEBAR */
.sidebar { position: sticky; top: 88px; }
.sidebar-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); }
.sidebar-card-header { background: var(--blue-900); color: var(--white); padding: 1.1rem 1.5rem; font-weight: 700; font-size: .95rem; }
.sidebar-card-body { padding: 1.25rem 1.5rem; }
.sidebar-card-body .btn { width: 100%; margin-bottom: .75rem; text-align: center; }
.sidebar-card-body .btn:last-of-type { margin-bottom: 0; }
.sidebar-note { font-size: .78rem; color: var(--gray-500); margin-top: .75rem; text-align: center; }
.sidebar-services { display: flex; flex-direction: column; gap: .25rem; }
.sidebar-services a { display: flex; align-items: center; gap: .6rem; padding: .6rem .75rem; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; color: var(--gray-700); transition: all .15s; }
.sidebar-services a:hover { background: var(--blue-50); color: var(--blue-600); text-decoration: none; }
.sidebar-services a svg { width: 16px; height: 16px; color: var(--blue-500); flex-shrink: 0; }
.sidebar-offer { background: linear-gradient(135deg, #fff7ed, #ffedd5); border: 1.5px solid #fed7aa; border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; text-align: center; }
.sidebar-offer .offer-amount { font-size: 2.5rem; font-weight: 900; color: var(--orange); line-height: 1; }
.sidebar-offer .offer-label { font-size: .95rem; font-weight: 700; color: var(--orange-dark); margin-bottom: .6rem; display: block; }
.sidebar-offer p { font-size: .82rem; color: var(--gray-600); margin: 0; }

/* FOOTER */
.footer { background: var(--blue-900); color: var(--white); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand > p { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: 1rem; margin-bottom: 1.5rem; line-height: 1.7; }
.footer-nap { display: flex; flex-direction: column; gap: .6rem; }
.footer-nap-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.75); }
.footer-nap-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-nap-item a { color: rgba(255,255,255,.75); }
.footer-nap-item a:hover { color: var(--orange); }
.footer-heading { font-weight: 700; font-size: .875rem; color: var(--white); margin-bottom: 1rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .875rem; transition: color .15s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.footer-logo-icon { width: 42px; height: 42px; background: var(--blue-600); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-icon svg { width: 22px; height: 22px; }
.footer-logo-name { font-weight: 800; font-size: 1rem; color: var(--white); }
.footer-logo-sub { font-size: .7rem; color: rgba(255,255,255,.6); }

/* STICKY CALL */
.sticky-call { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; display: none; }
.sticky-call a { display: flex; align-items: center; gap: .6rem; background: var(--orange); color: var(--white); padding: .9rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: .95rem; box-shadow: 0 8px 24px rgba(249,115,22,.5); transition: all .2s; animation: pulse-orange 2s infinite; }
.sticky-call a:hover { background: var(--orange-dark); transform: scale(1.05); }
.sticky-call svg { width: 22px; height: 22px; }
@keyframes pulse-orange { 0%,100% { box-shadow: 0 8px 24px rgba(249,115,22,.5); } 50% { box-shadow: 0 8px 36px rgba(249,115,22,.75); } }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.04); top: -200px; right: -100px; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-image { height: 180px; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); display: flex; align-items: center; justify-content: center; }
.blog-card-image svg { width: 56px; height: 56px; color: rgba(255,255,255,.35); }
.blog-card-body { padding: 1.5rem; }
.blog-card-category { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-500); margin-bottom: .5rem; display: block; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .6rem; color: var(--gray-900); }
.blog-card p { font-size: .85rem; margin-bottom: 1rem; }
.blog-card-meta { font-size: .78rem; color: var(--gray-500); }
.blog-card-link { font-size: .875rem; font-weight: 700; color: var(--blue-600); display: inline-flex; align-items: center; gap: .3rem; margin-top: .75rem; }
.blog-card-link:hover { gap: .6rem; }

/* INLINE FORM SECTION */
.inline-form-section { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2.5rem; margin: 3rem 0; }
.inline-form-section h3 { color: var(--blue-900); margin-bottom: .5rem; font-size: 1.4rem; }
.inline-form-section > p { margin-bottom: 1.5rem; }

/* CHECKLIST */
.checklist { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.checklist-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .925rem; color: var(--gray-700); }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-icon svg { width: 13px; height: 13px; color: #16a34a; }

/* PROCESS STEPS */
.process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.process-step { text-align: center; padding: 2rem 1.5rem; background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200); }
.process-num { width: 52px; height: 52px; border-radius: 50%; background: var(--blue-600); color: var(--white); font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.process-step h4 { margin-bottom: .5rem; color: var(--gray-900); }
.process-step p { font-size: .875rem; }

/* URGENCY BAR */
.urgency-bar { background: #fef3c7; border: 1px solid #f59e0b; border-radius: var(--radius); padding: .75rem 1.25rem; display: flex; align-items: center; gap: .75rem; font-size: .875rem; font-weight: 600; color: #92400e; margin-bottom: 1.5rem; }
.urgency-bar svg { width: 18px; height: 18px; color: #d97706; flex-shrink: 0; }

/* LOCATION MAP */
.location-map-placeholder { background: linear-gradient(135deg, var(--blue-100), var(--blue-50)); border: 2px solid var(--blue-200); border-radius: var(--radius-lg); height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; }
.location-map-placeholder svg { width: 48px; height: 48px; color: var(--blue-400); }
.location-map-placeholder p { font-weight: 600; font-size: .9rem; color: var(--blue-700); margin: 0; }

/* POST CONTENT */
.post-content h2 { margin: 2.5rem 0 1rem; font-size: 1.65rem; }
.post-content h3 { margin: 2rem 0 .75rem; font-size: 1.25rem; color: var(--blue-800); }
.post-content p { margin-bottom: 1.25rem; font-size: .975rem; line-height: 1.8; }
.post-content ul { padding-left: 1.5rem; margin-bottom: 1.25rem; list-style: disc; }
.post-content ul li { margin-bottom: .5rem; color: var(--gray-700); }
.post-content blockquote { border-left: 4px solid var(--blue-500); background: var(--blue-50); padding: 1.25rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; font-style: italic; color: var(--blue-900); }
.post-header { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-200); }
.post-category { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-500); margin-bottom: .75rem; display: block; }
.post-header h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.post-meta { display: flex; align-items: center; gap: 1.5rem; font-size: .82rem; color: var(--gray-500); flex-wrap: wrap; }
.post-meta span { display: flex; align-items: center; gap: .35rem; }

/* STARS */
.stars-display { display: flex; gap: 4px; align-items: center; }
.stars-display svg { width: 22px; height: 22px; color: #f59e0b; }
.stars-label { font-size: .9rem; font-weight: 700; color: var(--gray-700); margin-left: .4rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 540px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-cta .btn-blue { display: none; }
  .hamburger { display: flex; }
  .sticky-call { display: block; }
  .trust-divider { display: none; }
  .trust-strip-inner { gap: 1rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-stats { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .promo-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .why-image-stats { grid-template-columns: 1fr 1fr; }
  .top-bar-icon:not(:first-child) { display: none; }
  .top-bar-right .top-bar-icon { display: none; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .page-hero-ctas { flex-direction: column; }
  .page-hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* UTILITIES */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-orange { color: var(--orange) !important; }
.text-blue { color: var(--blue-600) !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.font-bold { font-weight: 700; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === GLOBAL FORM FIX === */
input, select, textarea {
  background-color: #ffffff !important;
  color: #1f2937 !important;
  -webkit-text-fill-color: #1f2937 !important;
}
input::placeholder, textarea::placeholder { color: #9ca3af !important; opacity:1 !important; }
input:focus, select:focus, textarea:focus {
  background-color: #ffffff !important;
  color: #1f2937 !important;
  outline: 2px solid #2563eb !important;
  outline-offset: 1px;
}
select option { background:#fff; color:#1f2937; }

/* === FORM-INPUT / FORM-SELECT FIX === */
.form-input, .form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  color: #1f2937 !important;
  background: #ffffff !important;
  -webkit-text-fill-color: #1f2937 !important;
  outline: none;
  box-sizing: border-box;
  cursor: text;
  pointer-events: auto !important;
  -webkit-appearance: none;
  appearance: none;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
}
.form-input:focus, .form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-input::placeholder { color: #9ca3af !important; opacity: 1 !important; }

/* === SUBMIT BUTTON GLOBAL FIX === */
input[type="submit"], button[type="submit"], button[type="button"] {
  background: #ff6b00 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 14px !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  width: 100% !important;
  letter-spacing: .5px !important;
  transition: background .2s !important;
}
input[type="submit"]:hover, button[type="submit"]:hover, button[type="button"]:hover {
  background: #d45a10 !important;
}
/* Exception: nav buttons */
nav button, nav input[type="submit"] {
  background: none !important;
  color: inherit !important;
  border: none !important;
  width: auto !important;
  padding: 10px 12px !important;
  font-size: 15px !important;
}
