/* ============================================================
   PANTOPIC AI — Global Stylesheet
   Brand: White + Deep Blue (#0A2D6E) + Orange CTAs (#29B6F6)
   ============================================================ */

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

:root {
  --navy:      #0A2D6E;
  --navy-dark: #071F4D;
  --navy-mid:  #0A3D91;
  --blue:      #1565C0;
  --orange:    #29B6F6;
  --orange-dk: #0A3D91;
  --white:     #FFFFFF;
  --off-white: #F8FAFC;
  --light-gray:#E2E8F0;
  --mid-gray:  #94A3B8;
  --text:      #1E293B;
  --text-light:#64748B;
  --success:   #10B981;
  --font:      'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --shadow:    0 4px 24px rgba(10,45,110,0.10);
  --shadow-lg: 0 12px 48px rgba(10,45,110,0.16);
  --radius:    10px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
  --max-width: 1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-dark); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.25; color: var(--navy); font-weight: 700; }

/* ---------- UTILITY ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.85); }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }
.badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.badge--orange { background: #FFF7ED; color: var(--orange); border: 1px solid #FED7AA; }
.badge--navy  { background: #EFF6FF; color: var(--navy); border: 1px solid #BFDBFE; }
.badge--green { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 1rem; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); text-decoration: none; }
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(41, 182, 246,0.35); }
.btn--secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy); color: var(--white); }
.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--off-white); }
.btn--ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }

/* ---------- NAV ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--light-gray); transition: box-shadow var(--transition); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo svg { height: 38px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a { padding: 8px 14px; border-radius: 8px; color: var(--text); font-weight: 500; font-size: 0.95rem; transition: all var(--transition); }
.nav__links a:hover, .nav__links a.active { background: var(--off-white); color: var(--navy); }
.nav__cta { margin-left: 12px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.nav__mobile { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); padding: 20px 24px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--light-gray); flex-direction: column; gap: 4px; z-index: 999; }
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 12px 16px; border-radius: 8px; color: var(--text); font-weight: 500; }
.nav__mobile a:hover { background: var(--off-white); color: var(--navy); }
.nav__mobile .btn { margin-top: 8px; justify-content: center; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); padding: 130px 0 80px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow { display: block; color: var(--orange); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--navy); margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 620px; margin: 0 auto; }

/* ---------- CARDS ---------- */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--light-gray); padding: 32px; transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon { width: 52px; height: 52px; background: #EFF6FF; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; }
.card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 0.97rem; }

/* ---------- PRICING CARDS ---------- */
.pricing-card { background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--light-gray); padding: 36px; display: flex; flex-direction: column; gap: 12px; transition: all var(--transition); }
.pricing-card:hover, .pricing-card.featured { border-color: var(--navy); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--navy); color: var(--white); }
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--white); }
.pricing-card.featured .feature-list li { color: rgba(255,255,255,0.85); }
.pricing-card.featured .feature-list li::before { color: #6EE7B7; }
.price { font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.pricing-card.featured .price span { color: rgba(255,255,255,0.65); }
.feature-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.96rem; color: var(--text-light); }
.feature-list li::before { content: "✓"; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ---------- GRID LAYOUTS ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- STAT BAR ---------- */
.stat-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 32px 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--orange); display: block; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ---------- TESTIMONIALS ---------- */
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border-left: 4px solid var(--orange); }
.testimonial p { font-size: 1.05rem; font-style: italic; color: var(--text); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author .name { font-weight: 700; color: var(--navy); }
.testimonial-author .role { font-size: 0.87rem; color: var(--text-light); }

/* ---------- FAQ ACCORDION ---------- */
.faq-item { border: 1px solid var(--light-gray); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: var(--white); border: none; cursor: pointer; text-align: left; font-size: 1.05rem; font-weight: 600; color: var(--navy); transition: background var(--transition); gap: 16px; }
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--off-white); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all var(--transition); color: var(--navy); }
.faq-question.open .faq-icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-light); line-height: 1.7; font-size: 0.98rem; }
.faq-answer.open { display: block; }

/* ---------- BLOG CARDS ---------- */
.blog-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--light-gray); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img { height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--text-light); }
.blog-card__meta .dot { width: 4px; height: 4px; background: var(--mid-gray); border-radius: 50%; }
.blog-card h3 { font-size: 1.15rem; color: var(--navy); line-height: 1.35; flex: 1; }
.blog-card p { color: var(--text-light); font-size: 0.95rem; flex: 1; }
.blog-card .read-more { color: var(--blue); font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 6px; margin-top: auto; }
.blog-card .read-more:hover { color: var(--navy); }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--light-gray); border-radius: var(--radius); font-size: 1rem; font-family: var(--font); color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,45,110,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
.form-hint { font-size: 0.83rem; color: var(--text-light); margin-top: 5px; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-label { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--light-gray); border-radius: var(--radius); cursor: pointer; transition: all var(--transition); font-size: 0.97rem; }
.radio-label:hover { border-color: var(--navy); background: var(--off-white); }
.radio-label input[type="radio"], .radio-label input[type="checkbox"] { flex-shrink: 0; margin-top: 2px; accent-color: var(--navy); width: 18px; height: 18px; cursor: pointer; }
.radio-label.selected { border-color: var(--navy); background: #EFF6FF; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }

/* ---------- PROGRESS BAR (survey) ---------- */
.progress-bar-wrap { background: var(--light-gray); border-radius: 100px; height: 6px; margin-bottom: 32px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--blue)); border-radius: 100px; transition: width 0.4s ease; }
.step-counter { text-align: right; font-size: 0.87rem; color: var(--text-light); margin-bottom: 8px; }

/* ---------- SURVEY STEPS ---------- */
.survey-step { display: none; }
.survey-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.survey-wrap { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 48px; }
.survey-wrap h2 { font-size: 1.5rem; margin-bottom: 8px; }
.survey-wrap .sub { color: var(--text-light); margin-bottom: 32px; }
.survey-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }

/* ---------- VETERAN BADGE ---------- */
.vet-badge { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.vet-badge__seal { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--light-gray); background: var(--off-white); display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 8px; }
.vet-badge__seal svg { width: 40px; height: 40px; }
.vet-badge__text { font-size: 0.72rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; line-height: 1.3; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer__main { padding: 64px 0 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand .logo { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer__brand .logo span { color: var(--orange); }
.footer__brand p { font-size: 0.93rem; line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
.footer__col h4 { color: var(--white); font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { color: rgba(255,255,255,0.65); font-size: 0.93rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__bottom p { font-size: 0.87rem; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all var(--transition); text-decoration: none; }
.social-links a:hover { background: var(--orange); color: var(--white); }

/* ---------- HERO (homepage) ---------- */
.hero { padding: 140px 0 90px; background: linear-gradient(160deg, #F8FAFC 0%, #EFF6FF 100%); overflow: hidden; position: relative; }
.hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(60% 100% at 50% 100%); }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__text .eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #FFF7ED; color: var(--orange); border: 1px solid #FED7AA; padding: 6px 14px; border-radius: 100px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.hero__text h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--navy); margin-bottom: 20px; letter-spacing: -0.02em; }
.hero__text h1 span { color: var(--orange); }
.hero__text p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 8px; margin-top: 32px; }
.hero__trust span { font-size: 0.85rem; color: var(--text-light); }
.hero__img { position: relative; display: flex; justify-content: center; }
.hero__photo-wrap { position: relative; }
.hero__photo { width: 100%; max-width: 440px; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-lg); }
.hero__photo-placeholder { width: 440px; height: 520px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; color: rgba(255,255,255,0.6); font-size: 0.95rem; box-shadow: var(--shadow-lg); }
.hero__photo-placeholder .icon { font-size: 4rem; }
.hero__badge { position: absolute; bottom: -20px; right: -20px; background: var(--white); border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow-lg); border: 1px solid var(--light-gray); text-align: center; }
.hero__badge .num { font-size: 1.8rem; font-weight: 800; color: var(--orange); }
.hero__badge .lbl { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }

/* ---------- PROCESS STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: var(--light-gray); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__num { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--navy); color: var(--navy); font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step.active .step__num { background: var(--navy); color: var(--white); }
.step h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-light); }

/* ---------- CTA BANNER ---------- */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 60%); }
.cta-banner h2 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- SHOP ITEM ---------- */
.shop-item { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--light-gray); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition); }
.shop-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shop-item__img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.shop-item:nth-child(1) .shop-item__img { background: linear-gradient(135deg, #EFF6FF, #BFDBFE); }
.shop-item:nth-child(2) .shop-item__img { background: linear-gradient(135deg, #FFF7ED, #FED7AA); }
.shop-item:nth-child(3) .shop-item__img { background: linear-gradient(135deg, #ECFDF5, #A7F3D0); }
.shop-item:nth-child(4) .shop-item__img { background: linear-gradient(135deg, #FDF4FF, #E9D5FF); }
.shop-item__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.shop-item__price { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.shop-item__price .original { font-size: 0.9rem; font-weight: 400; color: var(--text-light); text-decoration: line-through; margin-left: 6px; }
.shop-item__coming { display: inline-block; background: var(--off-white); color: var(--text-light); padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; border: 1px solid var(--light-gray); }

/* ---------- ABOUT PAGE ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo-placeholder { height: 480px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; border-radius: var(--radius-lg); }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--navy); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--navy); flex-shrink: 0; }
.timeline-line { width: 2px; flex: 1; background: var(--light-gray); margin-top: 4px; }
.timeline-item:last-child .timeline-line { display: none; }
.timeline-content { padding-top: -2px; }
.timeline-year { font-size: 0.82rem; font-weight: 700; color: var(--orange); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.timeline-content h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.timeline-content p { font-size: 0.93rem; color: var(--text-light); }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: #EFF6FF; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.93rem; color: var(--text-light); }

/* ---------- ALERT / SUCCESS MESSAGES ---------- */
.alert { padding: 16px 20px; border-radius: var(--radius); font-size: 0.97rem; margin-bottom: 20px; display: none; }
.alert--success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.alert--error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert.show { display: flex; align-items: flex-start; gap: 10px; }

/* ---------- MODAL ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; animation: fadeIn 0.2s ease; }
.modal { background: var(--white); border-radius: var(--radius-lg); max-width: 560px; width: 100%; padding: 40px; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.25); }
.modal__close { position: absolute; top: 16px; right: 16px; background: var(--off-white); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 1.1rem; color: var(--text-light); display: flex; align-items: center; justify-content: center; }
.modal__close:hover { background: var(--light-gray); color: var(--text); }
.modal h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.modal p { color: var(--text-light); margin-bottom: 24px; }
.calendly-inline { min-height: 400px; border-radius: var(--radius); overflow: hidden; background: var(--off-white); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.95rem; border: 1px solid var(--light-gray); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .stat-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__img { order: -1; }
  .hero__photo-placeholder { width: 100%; max-width: 100%; height: 320px; }
  .hero__badge { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .survey-wrap { padding: 28px 20px; }
  .pricing-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 0 70px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none !important; }
}
