/* ══════════════════════════════════════════
   TELASEVEN GLOBAL SERVICES
   Theme: White + Sky Blue
   ══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky:          #0ea5e9;   /* primary sky blue */
  --sky-dark:     #0284c7;   /* hover / darker sky blue */
  --sky-deep:     #0369a1;   /* deep blue for headings */
  --sky-light:    #38bdf8;   /* light sky blue accent */
  --sky-pale:     #e0f2fe;   /* very pale sky for backgrounds */
  --sky-pale2:    #bae6fd;   /* slightly deeper pale blue */
  --white:        #ffffff;
  --hero-bg:      #f0f9ff;   /* near-white sky tint */
  --hero-right:   #dbeafe;   /* sky blue right panel */
  --text:         #0c2340;   /* deep navy for text */
  --text-muted:   #64748b;
  --border:       #bae6fd;   /* sky blue border */
  --off-white:    #f0f9ff;
  --green-dot:    #22c55e;
  --section-alt:  #f0f9ff;   /* alternate section bg */
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); }

/* ══════════ NAV ══════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--white);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(14,165,233,.08);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--sky);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.15rem; color: var(--white);
  flex-shrink: 0;
}
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-name { font-size: .95rem; font-weight: 900; letter-spacing: .01em; line-height: 1.2; }
.nav-logo .logo-name .part1 { color: var(--sky-deep); }
.nav-logo .logo-name .part2 { color: var(--sky); }
.nav-logo .logo-sub { font-size: .72rem; color: var(--text-muted); font-weight: 400; letter-spacing: .02em; margin-top: 1px; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; position: relative; padding-bottom: 4px; }
.nav-links a:hover { color: var(--sky-deep); }
.nav-links a.active { color: var(--sky-deep); font-weight: 600; }
.nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--sky); border-radius: 2px; }
.nav-cta {
  background: var(--sky) !important; color: var(--white) !important;
  padding: .55rem 1.4rem !important; border-radius: 8px !important;
  font-weight: 700 !important; font-size: .88rem !important;
  transition: background .2s, box-shadow .2s !important; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(14,165,233,.3) !important;
}
.nav-cta:hover { background: var(--sky-dark) !important; box-shadow: 0 6px 18px rgba(14,165,233,.4) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--sky-deep); border-radius: 2px; transition: .3s; }

/* ══════════ HERO ══════════ */
#home {
  min-height: 100vh;
  background: var(--hero-bg);
  display: flex; align-items: center;
  padding: 68px 0 0;
  position: relative; overflow: hidden;
}
#home::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 48%; height: 100%;
  background: linear-gradient(160deg, #dbeafe 0%, #bae6fd 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-content {
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 5rem 2.5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 2rem;
  position: relative; z-index: 1;
}
.hero-left { padding-right: 1rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-muted); padding: .38rem 1rem;
  border-radius: 50px; font-size: .8rem; font-weight: 500;
  margin-bottom: 2rem; box-shadow: 0 1px 6px rgba(14,165,233,.1);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-dot); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

#home h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; margin-bottom: 1.4rem;
  color: var(--text);
}
#home h1 em { font-style: normal; color: var(--sky); }

#home .hero-desc {
  color: var(--text-muted); font-size: .97rem;
  max-width: 500px; line-height: 1.75; margin-bottom: 2.2rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; align-items: center; }
.btn-primary {
  background: var(--sky); color: var(--white);
  padding: .82rem 1.8rem; border-radius: 10px;
  font-weight: 700; text-decoration: none; font-size: .93rem;
  display: inline-flex; align-items: center; gap: .45rem;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(14,165,233,.35);
}
.btn-primary:hover { background: var(--sky-dark); box-shadow: 0 6px 20px rgba(14,165,233,.45); }
.btn-outline {
  background: transparent; color: var(--sky-deep);
  border: 1.5px solid var(--sky);
  padding: .82rem 1.8rem; border-radius: 10px;
  font-weight: 600; text-decoration: none; font-size: .93rem;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--sky); color: var(--white); }

.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat strong { display: block; font-size: 1.9rem; font-weight: 800; color: var(--sky-deep); line-height: 1; }
.stat span { font-size: .78rem; color: var(--text-muted); font-weight: 400; margin-top: 2px; display: block; }

/* RIGHT — floating cards */
.hero-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0;
  position: relative; padding: 2rem 1rem 2rem 2rem;
}
.hero-card-new-clients {
  background: var(--white); border-radius: 14px; padding: 1.1rem 1.4rem;
  box-shadow: 0 6px 28px rgba(14,165,233,.12);
  display: flex; align-items: center; gap: 1rem;
  min-width: 210px; align-self: flex-end;
  position: relative; z-index: 2; margin-bottom: -20px;
}
.nc-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--sky-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.nc-label { font-size: .72rem; color: var(--text-muted); font-weight: 500; }
.nc-value { font-size: 1.2rem; font-weight: 800; color: var(--text); line-height: 1.2; }

.hero-card-revenue {
  background: var(--white); border-radius: 16px; padding: 1.5rem 1.75rem 1.25rem;
  box-shadow: 0 8px 32px rgba(14,165,233,.14);
  min-width: 240px; align-self: flex-start;
  position: relative; z-index: 3; margin-left: 0;
}
.rev-label { font-size: .78rem; color: var(--text-muted); font-weight: 500; margin-bottom: .5rem; }
.rev-icon-wrap { width: 42px; height: 42px; background: #fef3c7; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: .75rem; }
.rev-value { font-size: 1.8rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: .9rem; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 44px; }
.chart-bar { border-radius: 3px 3px 0 0; background: var(--sky-pale2); flex: 1; }
.chart-bar.hi { background: var(--sky); }

.hero-card-roi {
  background: var(--white); border-radius: 14px; padding: 1rem 1.4rem;
  box-shadow: 0 6px 24px rgba(14,165,233,.12);
  display: flex; align-items: center; gap: .85rem;
  min-width: 195px; align-self: flex-end;
  position: relative; z-index: 2; margin-top: -16px;
}
.roi-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--sky-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.roi-label { font-size: .7rem; color: var(--text-muted); font-weight: 500; }
.roi-value { font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1.2; }

/* ══════════ SHARED SECTIONS ══════════ */
section { padding: 5rem 2.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: .75rem; font-weight: 700; color: var(--sky); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem; }
.section-title { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: var(--sky-deep); line-height: 1.15; letter-spacing: -.02em; margin-bottom: .9rem; }
.section-sub { color: var(--text-muted); font-size: .97rem; max-width: 520px; line-height: 1.75; }

/* ══════════ SERVICES ══════════ */
#services { background: var(--section-alt); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.4rem; margin-top: 3rem; }
.service-card { background: var(--white); border-radius: 14px; padding: 2rem; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(14,165,233,.12); }
.service-card.highlight { background: var(--sky); border-color: var(--sky); }
.service-icon { width: 46px; height: 46px; background: var(--sky-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; }
.service-card.highlight .service-icon { background: rgba(255,255,255,.2); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .65rem; color: var(--sky-deep); }
.service-card.highlight h3 { color: var(--white); }
.service-card p { color: var(--text-muted); font-size: .87rem; line-height: 1.65; margin-bottom: .9rem; }
.service-card.highlight p { color: rgba(255,255,255,.85); }
.tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.1rem; }
.tag { font-size: .71rem; padding: .22rem .65rem; border-radius: 50px; font-weight: 600; background: var(--sky-pale); color: var(--sky-deep); border: 1px solid var(--border); }
.service-card.highlight .tag { background: rgba(255,255,255,.2); color: var(--white); border-color: rgba(255,255,255,.3); }
.service-link { font-size: .84rem; color: var(--sky); font-weight: 700; text-decoration: none; }

/* ══════════ ABOUT ══════════ */
#about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; margin-top: 3rem; }
.about-visual { background: linear-gradient(135deg, var(--sky-deep), var(--sky)); border-radius: 16px; padding: 3rem; color: var(--white); position: relative; overflow: hidden; }
.about-visual::before { content: ''; position: absolute; bottom: -30px; right: -30px; width: 160px; height: 160px; background: rgba(255,255,255,.08); border-radius: 50%; }
.about-year { font-size: 5rem; font-weight: 900; color: rgba(255,255,255,.15); line-height: 1; display: block; }
.about-visual p { color: rgba(255,255,255,.8); margin-top: .5rem; font-size: .93rem; }
.about-pills { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 2rem; }
.about-pill { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: var(--white); padding: .3rem .85rem; border-radius: 50px; font-size: .78rem; font-weight: 600; }
.about-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; font-size: .95rem; }
.about-points { list-style: none; margin: 1.5rem 0; }
.about-points li { display: flex; align-items: flex-start; gap: .7rem; color: var(--text); font-size: .92rem; padding: .45rem 0; }
.about-points li::before { content: '✓'; color: var(--sky); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ══════════ WHY US ══════════ */
#why { background: var(--section-alt); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 1.4rem; margin-top: 3rem; }
.why-card { background: var(--white); border-radius: 12px; padding: 1.8rem; border: 1px solid var(--border); }
.why-number { font-size: 2.2rem; font-weight: 900; color: var(--sky-pale2); line-height: 1; margin-bottom: .65rem; }
.why-card h3 { font-size: .97rem; font-weight: 700; color: var(--sky-deep); margin-bottom: .45rem; }
.why-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; }
.stats-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-item strong { display: block; font-size: 2.3rem; font-weight: 900; color: var(--sky-deep); line-height: 1; }
.stat-item span { font-size: .8rem; color: var(--text-muted); }

/* ══════════ TESTIMONIALS ══════════ */
#testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.4rem; margin-top: 3rem; }
.testimonial-card { background: var(--section-alt); border-radius: 14px; padding: 2rem; border: 1px solid var(--border); }
.stars { color: #f59e0b; font-size: .88rem; margin-bottom: .9rem; }
.testimonial-card p { color: var(--text); font-size: .91rem; line-height: 1.7; margin-bottom: 1.4rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .7rem; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--sky-deep), var(--sky)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .82rem; color: var(--white); }
.reviewer-info strong { display: block; font-size: .88rem; font-weight: 700; color: var(--sky-deep); }
.reviewer-info span { font-size: .76rem; color: var(--text-muted); }

/* ══════════ CONTACT ══════════ */
#contact { background: var(--section-alt); }
.contact-company-name { font-size: 1.3rem; font-weight: 800; color: var(--sky-deep); letter-spacing: -.02em; margin-bottom: 1.75rem; padding-bottom: .9rem; border-bottom: 2px solid var(--sky); display: inline-block; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.6rem; }
.contact-icon { width: 42px; height: 42px; background: var(--sky); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: .76rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.contact-info-item a, .contact-info-item span { color: var(--sky-deep); font-weight: 600; font-size: .93rem; text-decoration: none; }
.contact-form { background: var(--white); border-radius: 16px; padding: 2.5rem; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(14,165,233,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: .38rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .72rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: .91rem; color: var(--text); font-family: inherit; transition: border-color .2s; background: var(--off-white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--sky); background: var(--white); box-shadow: 0 0 0 3px rgba(14,165,233,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: .88rem; background: var(--sky); color: var(--white); font-weight: 700; font-size: .97rem; border: none; border-radius: 8px; cursor: pointer; transition: background .2s, box-shadow .2s; }
.form-submit:hover { background: var(--sky-dark); box-shadow: 0 6px 20px rgba(14,165,233,.35); }
.success-msg { display: none; text-align: center; color: #15803d; font-weight: 600; margin-top: 1rem; padding: .7rem; background: #dcfce7; border-radius: 8px; }

/* ══════════ FOOTER ══════════ */
footer { background: var(--sky-deep); color: rgba(255,255,255,.7); padding: 4rem 2.5rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; margin-bottom: .75rem; }
.footer-logo .logo-icon { width: 36px; height: 36px; background: rgba(255,255,255,.15); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; color: var(--white); }
.footer-logo .logo-name { font-size: .88rem; font-weight: 900; letter-spacing: .03em; }
.footer-logo .logo-name .part1 { color: var(--white); }
.footer-logo .logo-name .part2 { color: var(--sky-light); }
.footer-logo .logo-sub { font-size: .68rem; color: rgba(255,255,255,.5); font-weight: 400; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 270px; }
.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; margin-bottom: .9rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .83rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; }
.footer-bottom p { font-size: .8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .8rem; transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* ══════════ LEGAL PAGES ══════════ */
.legal-page { display: none; min-height: 100vh; padding-top: 68px; }
.legal-hero { background: linear-gradient(135deg, var(--sky-deep), var(--sky)); padding: 4rem 2.5rem 3rem; text-align: center; }
.legal-hero h1 { color: var(--white); font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 800; margin-bottom: .75rem; }
.legal-hero p { color: rgba(255,255,255,.7); font-size: .93rem; }
.legal-hero .breadcrumb { margin-bottom: 1.5rem; }
.legal-hero .breadcrumb a { color: #bae6fd; text-decoration: none; font-size: .83rem; }
.legal-hero .breadcrumb span { color: rgba(255,255,255,.45); font-size: .83rem; }
.legal-body { max-width: 860px; margin: 0 auto; padding: 4rem 2rem 5rem; }
.legal-body h2 { font-size: 1.25rem; font-weight: 700; color: var(--sky-deep); margin: 2.5rem 0 .7rem; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { color: var(--text-muted); font-size: .96rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-body ul { margin: .7rem 0 1rem 1.2rem; }
.legal-body ul li { color: var(--text-muted); font-size: .96rem; line-height: 1.8; margin-bottom: .45rem; }
.legal-contact-box { background: var(--sky-pale); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem 2rem; margin-top: 2.5rem; }
.legal-contact-box strong { display: block; color: var(--sky-deep); font-weight: 700; margin-bottom: .5rem; }
.legal-contact-box a { color: var(--sky); text-decoration: none; font-weight: 600; }
.back-btn { display: inline-flex; align-items: center; gap: .45rem; color: var(--sky); font-weight: 700; font-size: .88rem; text-decoration: none; cursor: pointer; background: none; border: none; padding: 0; margin-bottom: 2rem; }
.back-btn:hover { text-decoration: underline; }

/* ══════════ PRICING CARDS ══════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1.4rem; margin: 2rem 0 1rem; }
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: 14px; padding: 1.75rem; display: flex; flex-direction: column; gap: .45rem; transition: transform .2s, box-shadow .2s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(14,165,233,.12); }
.pricing-card--featured { border-color: var(--sky); background: linear-gradient(135deg, var(--sky-deep), var(--sky)); box-shadow: 0 8px 28px rgba(14,165,233,.25); }
.pricing-badge { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .2rem; }
.pricing-badge--gold { color: #bae6fd; }
.pricing-price { font-size: 2.2rem; font-weight: 900; color: var(--sky-deep); line-height: 1; margin-bottom: .2rem; }
.pricing-card--featured .pricing-price { color: var(--white); }
.pricing-price span { font-size: .95rem; font-weight: 500; color: var(--text-muted); }
.pricing-card--featured .pricing-price span { color: rgba(255,255,255,.6); }
.pricing-desc { font-size: .86rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .65rem; }
.pricing-card--featured .pricing-desc { color: rgba(255,255,255,.8); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.4rem; flex: 1; }
.pricing-features li { font-size: .86rem; padding: .38rem 0; border-bottom: 1px solid var(--border); color: var(--text); }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.15); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-btn { display: block; text-align: center; padding: .72rem 1rem; border-radius: 8px; font-weight: 700; font-size: .88rem; text-decoration: none; margin-top: auto; background: var(--sky-pale); color: var(--sky-deep); border: 1.5px solid var(--border); transition: background .2s; }
.pricing-btn:hover { background: var(--sky-pale2); }
.pricing-btn--gold { background: var(--white); color: var(--sky-deep); border-color: var(--white); }
.pricing-btn--gold:hover { background: rgba(255,255,255,.88); }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .hero-right { display: none; }
  .hero-content { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 2rem; }
  nav { padding: 0 1.5rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; width: 100%; background: var(--white); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--border); box-shadow: 0 4px 12px rgba(14,165,233,.1); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.8rem; }
  .hero-content { padding: 4rem 1.5rem 3rem; }
  #home::before { display: none; }
}

/* ══════════ SERVICE DETAIL PAGES ══════════ */

/* Hero intro block */
.svc-hero-block {
  background: var(--sky-pale);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}
.svc-hero-text h2 {
  font-size: 1.6rem; font-weight: 800; color: var(--sky-deep);
  margin: 0 0 1rem; letter-spacing: -.02em;
}
.svc-hero-text p {
  color: var(--text-muted); font-size: .97rem; line-height: 1.8; margin-bottom: 1.5rem;
}

/* Stats row inside service hero */
.svc-stats-row {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.svc-stat strong {
  display: block; font-size: 2rem; font-weight: 900;
  color: var(--sky); line-height: 1;
}
.svc-stat span { font-size: .78rem; color: var(--text-muted); font-weight: 500; }

/* Service feature cards grid */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0 2rem;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: transform .2s, box-shadow .2s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(14,165,233,.12);
  border-color: var(--sky-light);
}
.svc-icon {
  font-size: 1.8rem; margin-bottom: .85rem; display: block;
}
.svc-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--sky-deep);
  margin-bottom: .5rem;
}
.svc-card p {
  font-size: .88rem; color: var(--text-muted);
  line-height: 1.65; margin: 0;
}

/* Process steps */
.svc-process {
  display: flex; flex-direction: column; gap: 1rem;
  margin: 1.25rem 0 2rem;
}
.svc-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
}
.svc-step-num {
  font-size: 1.6rem; font-weight: 900; color: var(--sky-pale2);
  line-height: 1; flex-shrink: 0; min-width: 44px;
}
.svc-step h3 {
  font-size: .97rem; font-weight: 700; color: var(--sky-deep); margin-bottom: .35rem;
}
.svc-step p {
  font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin: 0;
}

/* CTA box at bottom of service pages */
.svc-cta-box {
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  border-radius: 16px; padding: 2.5rem;
  text-align: center; margin-top: 3rem;
}
.svc-cta-box h3 {
  font-size: 1.5rem; font-weight: 800; color: var(--white);
  margin-bottom: .75rem; margin-top: 0;
}
.svc-cta-box p {
  color: rgba(255,255,255,.8); font-size: .97rem;
  margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto;
}
.svc-cta-box .btn-primary {
  background: var(--white); color: var(--sky-deep);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.svc-cta-box .btn-primary:hover {
  background: var(--sky-pale); box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

/* Responsive service pages */
@media (max-width: 640px) {
  .svc-cards { grid-template-columns: 1fr; }
  .svc-stats-row { gap: 1.25rem; }
  .svc-step { flex-direction: column; gap: .5rem; }
  .svc-cta-box { padding: 1.75rem 1.25rem; }
}

/* ══════════ PAYMENT SECTION ══════════ */
#payment { background: var(--white); }

.payment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}

/* Left card — payment button */
.payment-card {
  background: var(--sky-pale);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  text-align: center;
}
.payment-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.payment-card h3 {
  font-size: 1.25rem; font-weight: 800;
  color: var(--sky-deep); margin-bottom: .75rem;
}
.payment-card > p {
  color: var(--text-muted); font-size: .92rem;
  line-height: 1.7; margin-bottom: 1.5rem;
}
.payment-badges {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-bottom: 2rem;
}
.payment-badge {
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-muted); font-size: .75rem; font-weight: 600;
  padding: .3rem .85rem; border-radius: 50px;
  box-shadow: 0 1px 4px rgba(14,165,233,.08);
}
.payment-btn-wrap {
  display: flex; justify-content: center;
  margin-bottom: 1.5rem;
}
/* Style the PayGlocal button to match site theme */
.payment-btn-wrap form {
  display: inline-block;
}
.payment-btn-wrap script { display: none; }
.payment-note {
  font-size: .8rem; color: var(--text-muted);
  margin-top: .5rem;
}
.payment-note a { color: var(--sky); font-weight: 600; text-decoration: none; }
.payment-note a:hover { text-decoration: underline; }

/* Right side — info */
.payment-info h3 {
  font-size: 1.15rem; font-weight: 800;
  color: var(--sky-deep); margin-bottom: 1.5rem;
}
.payment-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.payment-step {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem;
}
.pstep-num {
  font-size: 1.4rem; font-weight: 900;
  color: var(--sky-pale2); line-height: 1;
  flex-shrink: 0; min-width: 38px;
}
.payment-step strong {
  display: block; font-size: .92rem;
  font-weight: 700; color: var(--sky-deep); margin-bottom: .25rem;
}
.payment-step p {
  font-size: .85rem; color: var(--text-muted);
  line-height: 1.6; margin: 0;
}
.payment-support {
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  border-radius: 14px; padding: 1.75rem;
  color: var(--white);
}
.payment-support strong {
  display: block; font-size: 1rem;
  font-weight: 700; margin-bottom: .4rem;
}
.payment-support p {
  font-size: .88rem; color: rgba(255,255,255,.8);
  line-height: 1.65; margin: 0;
}
.payment-support .btn-outline {
  border-color: rgba(255,255,255,.6);
  color: var(--white); font-size: .85rem;
  padding: .6rem 1.4rem;
}
.payment-support .btn-outline:hover {
  background: var(--white); color: var(--sky-deep);
}

@media (max-width: 900px) {
  .payment-wrapper { grid-template-columns: 1fr; }
}
