/* ============================================================
   ANGEL SITE STUDIO — STYLES.CSS
   Layout mirrors Nubien template · Angel Site Studio branding
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   1. RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */

:root {
  /* Backgrounds */
  --bg:             #FFFFFF;
  --bg-soft:        #F8F9FC;
  --surface:        #ffffff;
  --hero-bg:        #060915;
  --dark-section:   #060915;

  /* Brand blue — stays for nav, links, secondary elements */
  --primary:        #3B82F6;
  --primary-dark:   #2563EB;
  --primary-light:  #EFF6FF;
  --primary-glow:   rgba(59,130,246,0.20);

  /* Gold CTA — primary action color */
  --cta:            #F59E0B;
  --cta-dark:       #D97706;
  --cta-light:      #FFFBEB;

  /* Text */
  --text:           #0F172A;
  --text-secondary: #374151;
  --muted:          #6B7280;

  /* Borders */
  --border:         #E5E7EB;
  --border-strong:  #D1D5DB;

  /* State */
  --hover-hl:     #FFFBEB;
  --success:      #10b981;

  /* Surfaces */
  --glass-bg:     rgba(255,255,255,0.72);
  --glass-border: rgba(0,0,0,0.06);

  /* Shadows */
  --shadow-sm:      0 1px 4px rgba(15,23,42,0.06), 0 2px 8px rgba(15,23,42,0.04);
  --shadow:         0 4px 16px rgba(15,23,42,0.08), 0 2px 8px rgba(15,23,42,0.05);
  --shadow-lg:      0 12px 40px rgba(15,23,42,0.12), 0 4px 16px rgba(15,23,42,0.07);
  --shadow-blue:    0 4px 20px rgba(59,130,246,0.28);
  --shadow-gold:    0 4px 24px rgba(245,158,11,0.32);

  /* Radius */
  --radius:       18px;
  --radius-sm:    12px;
  --radius-xs:    8px;

  /* Spacing — 20% more breathing room */
  --sec:          80px;
  --sec-sm:       56px;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
h3 { font-size: clamp(1.1rem, 1.9vw, 1.3rem); font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; }
p  { color: var(--muted); line-height: 1.7; }
.lead { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.75; }

/* ============================================================
   4. LAYOUT
   ============================================================ */

.container  { width: min(1180px, 92%); margin: 0 auto; }
.section    { padding: var(--sec) 0; }
.section-sm { padding: var(--sec-sm) 0; }
.bg-white   { background: var(--surface); }
.bg-ivory   { background: var(--bg-soft); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .lead { margin: 0.75rem auto 0; }

/* --- Portfolio CTA glass card with bubbles --- */
.portfolio-cta-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  overflow: hidden;
}
.portfolio-cta-inner { position: relative; z-index: 2; }
.portfolio-cta-card h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: 0.5rem; }
.portfolio-cta-card p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.portfolio-cta-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.portfolio-cta-bubble-1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  top: -60px; right: -40px;
}
.portfolio-cta-bubble-2 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  bottom: -50px; left: -30px;
}

/* --- Industries bubbles (portfolio page) --- */
.industries-strip { margin-top: 2rem; text-align: center; }
.industries-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.industries-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.industries-row span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  transition: all 0.2s;
}
.industries-row span:hover {
  background: var(--cta-light);
  border-color: rgba(245,158,11,0.2);
  color: var(--cta-dark);
  transform: translateY(-1px);
}

/* --- Services page (compact) --- */
.services-page { padding: 110px 0 var(--sec-sm); background: var(--bg); }
.services-header-compact { text-align: center; margin-bottom: 2rem; }
.services-header-compact h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; }
.services-compact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 720px; margin: 0 auto; }
.svc-compact { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1.1rem; background: var(--bg-soft); border-radius: var(--radius-sm); border: 1px solid var(--border); transition: transform 0.2s; }
.svc-compact:hover { transform: translateY(-2px); }
.svc-compact .svc-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.svc-compact h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.15rem; }
.svc-compact p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.services-cta-line { text-align: center; margin-top: 2rem; font-size: 0.88rem; color: var(--muted); }
.services-cta-line a { color: var(--cta-dark); font-weight: 600; }
@media (max-width: 640px) { .services-compact-grid { grid-template-columns: 1fr; } }

/* --- Pricing page (compact) --- */
.pricing-page { padding: 110px 0 var(--sec-sm); background: var(--bg); }
.pricing-header { text-align: center; margin-bottom: 2rem; }
.pricing-header h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 0.4rem; }
.pricing-header p { color: var(--muted); font-size: 0.95rem; }
.pricing-tier { font-family: 'DM Sans', sans-serif; font-size: 1.6rem; font-weight: 800; color: #10b981; letter-spacing: 0.05em; margin-bottom: 0.4rem; text-align: center; }
.pricing-card { padding: 1.5rem; }
.pricing-card .pricing-desc { font-size: 0.82rem; margin-bottom: 1.25rem; text-align: center; }
.pricing-card .list-check { margin-bottom: 1.25rem; }
.pricing-card .list-check li { font-size: 0.8rem; }
.pricing-note { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--muted); }
.pricing-note a { color: var(--cta-dark); font-weight: 600; }

/* --- Contact page (compact single column) --- */
.contact-page { padding: 110px 0 5rem; background: var(--bg); }
.contact-center { max-width: 560px; margin: 0 auto; text-align: center; }
.contact-center h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 0.5rem; }
.contact-sub { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }
.contact-quick-info { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.contact-quick-info a { color: var(--cta-dark); font-weight: 600; }
.contact-dot { color: var(--border); }
.contact-center .form-stack { text-align: left; }
.contact-center .form-field label { font-size: 0.82rem; }
.contact-center input, .contact-center textarea { font-size: 0.9rem; padding: 0.6rem 0.85rem; }
.contact-center textarea { resize: vertical; }

/* --- Contact page footer (compact, pinned to bottom) --- */
.contact-footer {
  padding: 1.5rem 0;
  background: var(--bg-soft);
  border-top: 1px solid rgba(0,0,0,0.04);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.contact-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.contact-footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}
.contact-footer-links {
  display: flex;
  gap: 1.25rem;
}
.contact-footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.15s;
}
.contact-footer-links a:hover { color: var(--cta-dark); }
.contact-footer-copy {
  font-size: 0.72rem;
  color: var(--border-strong);
}
@media (max-width: 640px) {
  .contact-footer-inner { flex-direction: column; text-align: center; }
}

/* --- About Page --- */

/* Hero */
.about-hero {
  padding: 110px 0 40px;
  text-align: center;
  background: var(--bg);
}
.about-hero-inner { max-width: 680px; margin: 0 auto; }
.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.about-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #d97706, #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* Story */
.about-story {
  padding: var(--sec-sm) 0;
  background: var(--bg);
}
.story-content {
  max-width: 620px;
  margin: 0 auto;
}
.story-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.story-divider {
  width: 40px;
  height: 3px;
  background: var(--cta);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.story-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.story-content p strong { color: var(--text); }

/* City divider */
.city-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--bg);
  margin-bottom: -1rem;
}
.city-divider svg {
  width: 100%;
  height: 24px;
}

/* Values */
.about-values {
  padding: var(--sec-sm) 0;
  background: var(--bg-soft);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-visual {
  margin-bottom: 1rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-visual svg {
  width: 100%;
  max-width: 160px;
  height: auto;
}
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* Closing */
.about-closing {
  padding: var(--sec-sm) 0;
  background: var(--bg);
}
.closing-content {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.closing-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.closing-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.closing-content p strong { color: var(--text); }
.closing-content p em {
  font-style: italic;
  color: var(--text);
}
.closing-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* --- Sub-page hero --- */
.page-hero {
  padding: 110px 0 50px;
  text-align: center;
  background: linear-gradient(170deg, #ffffff 0%, #f0f2f5 40%, #e8ecf1 100%);
  color: var(--text);
}
.page-hero .eyebrow {
  color: var(--cta-dark);
  display: inline-block;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}
.page-hero .lead {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Grid layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* --- Checklist inside cards --- */
.list-check { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.list-check li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.5rem;
  position: relative;
}
.list-check li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 700;
}

/* --- Service / industry icon --- */
.svc-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }

/* --- Service grid (portfolio page) --- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.svc-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

/* --- Portfolio grid spacing --- */
.portfolio-grid { gap: 2rem; }
.portfolio-grid .card-glass { padding-bottom: 1.5rem; }

/* --- Contact page: "What Happens Next" box --- */
.contact-steps {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(59,130,246,0.15);
}
.contact-steps h4 {
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.contact-steps-list { display: flex; flex-direction: column; gap: 0.65rem; }
.contact-step-item { display: flex; gap: 0.6rem; align-items: flex-start; }
.contact-step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-step-item span:last-child { font-size: 0.85rem; color: var(--text); }

/* --- CTA button row (centered) --- */
/* .cta-btns-center merged into .cta-btns */

/* --- Pricing cards --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--cta);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}
.pricing-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}
.pricing-card .pricing-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.6;
}
.pricing-card .list-check { margin-bottom: 2rem; flex: 1; }
.pricing-card .btn { margin-top: auto; }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: min(440px, 100%); margin: 0 auto; } }

/* --- FAQ Accordion --- */
.faq-grid { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.accordion-btn::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.accordion-item.open .accordion-btn::after {
  content: '\2212';
  color: var(--cta);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-item.open .accordion-body {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.accordion-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* --- Guarantee badge --- */
.guarantee-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--cta-light);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-sm);
  margin-top: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-strip .guarantee-icon { font-size: 1.6rem; flex-shrink: 0; }
.guarantee-strip p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* --- Availability / urgency --- */
.hero-avail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================================
   5. BADGES / EYEBROW LABELS
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cta-dark);
  background: var(--cta-light);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cta);
  flex-shrink: 0;
}

.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cta-dark);
  background: var(--cta-light);
  border: 1px solid rgba(245,158,11,0.15);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.eyebrow-light::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cta);
  flex-shrink: 0;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 3px 10px;
  border-radius: 999px;
}
.badge-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: blink 1.8s infinite;
}
.badge-concept {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(59,130,246,0.18);
  padding: 3px 10px;
  border-radius: 999px;
}
.badge-example {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cta);
  background: var(--cta-light);
  border: 1px solid rgba(245,158,11,0.18);
  padding: 3px 10px;
  border-radius: 999px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.925rem;
  border: 2px solid transparent;
  transition: background 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.2s ease,
              color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--cta-dark);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 32px rgba(245,158,11,0.45);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.04);
  border-color: var(--text);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-lg   { padding: 1.05rem 2.25rem; font-size: 1.05rem; }
.btn-sm   { padding: 0.5rem 1rem; font-size: 0.825rem; }
.btn-full { width: 100%; }

/* ============================================================
   7. CARDS
   ============================================================ */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease;
}
.card:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow); border-color: rgba(59,130,246,0.14); }

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease;
}
.card-glass:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-lg); border-color: rgba(59,130,246,0.14); }

/* Clean white card — for features + trust sections */
.card-clean {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.2s ease;
}
.card-clean:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
/* Orange top-border accent on hover */
.card-clean::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cta);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: left;
}
.card-clean:hover::before { transform: scaleX(1); }

/* ============================================================
   8. ICON WRAPS
   ============================================================ */

.icon-wrap {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   9. BROWSER CHROME MOCKUP
   ============================================================ */

.browser-wrap {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: #0b1929;
  margin: -1.75rem -1.75rem 1.5rem;
}
.browser-bar {
  background: #172336;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.b-dots { display: flex; gap: 5px; }
.b-dot  { width: 9px; height: 9px; border-radius: 50%; }
.b-dot.r { background: #ff5f57; }
.b-dot.y { background: #febc2e; }
.b-dot.g { background: #28c840; }
.b-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  font-family: 'Inter', monospace;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.browser-screen {
  padding: 1.25rem;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Iframe preview inside browser mockup */
.browser-screen--iframe {
  padding: 0;
  position: relative;
  height: 200px;
  overflow: hidden;
  min-height: 200px;
}
.browser-screen--iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1200px;
  height: 800px;
  transform-origin: top left;
  border: none;
  pointer-events: none;
}
.bs-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.07); }
.bs-line.s { width: 42%; }
.bs-line.m { width: 68%; }
.bs-line.f { width: 88%; }
.bs-heading {
  color: rgba(255,255,255,0.82);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 4px 0;
}
.bs-cta {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 5px;
  margin-top: 4px;
  width: fit-content;
}

/* ============================================================
   10. FORMS
   ============================================================ */

.form-stack { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 0.925rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success.visible { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

/* ============================================================
   11. NAVBAR
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(250,249,246,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(15,23,42,0.08); }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
  justify-self: start;
  white-space: nowrap;
}
.logo-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 36px; height: 36px; display: block; }
/* A-path: always dark on light backgrounds */
.logo-icon .a-path { stroke: var(--text); }

/* Language toggle — center */
.lang-toggle {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.lang-opt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 15px;
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  background: none;
}
.lang-opt.active  { background: var(--primary); color: #fff; }
.lang-opt:not(.active):hover { color: var(--text); background: var(--hover-hl); }

/* Nav links — right */
.nav { justify-self: end; display: flex; align-items: center; gap: 2px; }
.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-xs);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav a:hover { color: var(--text); background: var(--hover-hl); }

.btn-call {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: var(--cta) !important;
  color: #fff !important;
  padding: 0.48rem 1rem !important;
  border-radius: 999px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
  transition: background 0.2s ease, transform 0.2s ease !important;
}
.btn-call:hover { background: var(--cta-dark) !important; transform: translateY(-1px) !important; }
.btn-call svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-xs);
  justify-self: end;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   12. HERO SECTION
   ============================================================ */

.hero {
  background: linear-gradient(170deg, #ffffff 0%, #f0f2f5 40%, #e8ecf1 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 40px;
  min-height: auto;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 65% at 20% 55%, rgba(59,130,246,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 25%, rgba(245,158,11,0.05) 0%, transparent 55%);
  pointer-events: none;
}
/* Decorative large ring */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.06);
  top: -160px; right: -120px;
  pointer-events: none;
}
.hero-blob { display: none; }
/* Subtle dot grid for depth */
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
  width: 100%;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }
.hero h1 { color: var(--text); margin-bottom: 1.2rem; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #d97706, #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 2.25rem;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Trust proof row */
.hero-proof {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; margin-top: 1.5rem;
}
.proof-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
}
.proof-item svg {
  width: 13px; height: 13px; stroke: var(--cta-dark); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.proof-item.proof-star svg { fill: var(--cta-dark); }
.proof-sep { color: var(--border); font-size: 0.75rem; }

/* Hero Visual (right column) */
.hero-visual {
  position: relative;
  z-index: 1;
}

/* Hero: multi-site showcase */
.hero-showcase {
  position: relative;
  width: 100%;
  height: 300px;
  perspective: 800px;
}
.showcase-frame {
  position: absolute;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,23,42,0.18), 0 8px 24px rgba(15,23,42,0.10);
  border: 1px solid rgba(0,0,0,0.08);
  background: #0f1724;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.showcase-frame .browser-bar {
  background: #172336;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.showcase-frame .b-dots { display: flex; gap: 5px; }
.showcase-frame .b-dot { width: 8px; height: 8px; border-radius: 50%; }
.showcase-frame .b-dot.r { background: #ff5f57; }
.showcase-frame .b-dot.y { background: #ffbd2e; }
.showcase-frame .b-dot.g { background: #28ca42; }
.showcase-frame .b-url { font-size: 0.65rem; color: rgba(255,255,255,0.35); margin-left: 8px; }
.showcase-frame .showcase-screen {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.showcase-frame .showcase-screen iframe {
  position: absolute;
  top: -40px; left: 0;
  width: 1200px;
  height: 900px;
  transform: scale(0.267);
  transform-origin: top left;
  border: none;
  pointer-events: none;
}
.showcase-back {
  top: 0;
  right: 0;
  transform: rotate(4deg);
  z-index: 1;
}
.showcase-mid {
  top: 25px;
  right: 30px;
  transform: rotate(-1.5deg);
  z-index: 2;
}
.showcase-front {
  top: 50px;
  right: 60px;
  transform: rotate(-4deg);
  z-index: 3;
}
.showcase-front:hover { transform: rotate(-4deg) translateY(-8px); box-shadow: 0 28px 70px rgba(15,23,42,0.22); }
@media (max-width: 900px) {
  .hero-showcase { height: 250px; }
  .showcase-frame { width: 220px; }
  .showcase-frame .showcase-screen { height: 130px; }
  .showcase-frame .showcase-screen iframe { transform: scale(0.183); }
  .showcase-back { right: -10px; }
  .showcase-mid { right: 10px; top: 20px; }
  .showcase-front { right: 30px; top: 40px; }
}

/* ============================================================
   HERO BROWSER MOCKUP
   ============================================================ */

/* Soft gold glow behind the card */
.bm-glow {
  position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.18) 0%, transparent 65%);
  z-index: -1; pointer-events: none;
}
.browser-mock {
  background: #0d1b2e; border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(6,9,21,0.6), 0 0 0 1px rgba(255,255,255,0.06), 0 0 40px rgba(245,158,11,0.12);
  animation: floatCard 5s ease-in-out 1.2s infinite;
  width: 100%; max-width: 480px;
}
/* Browser chrome bar */
.bm-bar {
  background: #162132; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bm-dots { display: flex; gap: 5px; flex-shrink: 0; }
.bm-dot  { width: 9px; height: 9px; border-radius: 50%; }
.bm-r { background: #ff5f57; }
.bm-y { background: #febc2e; }
.bm-g { background: #28c840; }
.bm-url-bar {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 5px;
  padding: 4px 10px; font-size: 0.68rem; color: rgba(255,255,255,0.3);
  font-family: 'Inter', monospace; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
/* Body of the mock website */
.bm-body { background: #0d1b2e; }
/* Mock navbar */
.bm-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px; background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bm-nav-logo { width: 60px; height: 7px; border-radius: 4px; background: rgba(255,255,255,0.15); }
.bm-nav-links { display: flex; gap: 6px; align-items: center; }
.bm-nav-link { width: 28px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.bm-nav-cta { width: 40px; height: 16px; border-radius: 4px; background: var(--cta); opacity: 0.85; }
/* Growth dashboard: leads bar chart */
.bm-dashboard { padding: 12px 14px 14px; }
.bm-dash-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.bm-dash-title {
  font-size: 0.6rem; font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.35); letter-spacing: 0.02em;
}
.bm-dash-badge {
  font-size: 0.62rem; font-weight: 700; font-family: 'DM Sans', sans-serif;
  color: #10b981; background: rgba(16,185,129,0.12);
  padding: 2px 6px; border-radius: 4px;
}
.bm-chart-wrap { margin-bottom: 10px; }
.bm-bars {
  display: flex; align-items: flex-end; gap: 5px; height: 72px;
}
.bm-bar-col {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,0.09);
  height: var(--bh);
  transform-origin: bottom;
  animation: barGrow 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.bm-bar-col:nth-child(1) { animation-delay: 0.10s; }
.bm-bar-col:nth-child(2) { animation-delay: 0.18s; }
.bm-bar-col:nth-child(3) { animation-delay: 0.26s; }
.bm-bar-col:nth-child(4) { animation-delay: 0.34s; }
.bm-bar-col:nth-child(5) { animation-delay: 0.42s; }
.bm-bar-col:nth-child(6) { animation-delay: 0.50s; }
.bm-bar-hi {
  background: var(--cta);
  box-shadow: 0 0 12px rgba(245,158,11,0.4);
}
@keyframes barGrow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}
.bm-kpis {
  display: flex; gap: 8px; padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.bm-kpi { display: flex; align-items: center; gap: 4px; }
.bm-kpi-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.bm-kpi-green { background: #10b981; }
.bm-kpi-gold  { background: var(--cta); }
.bm-kpi-blue  { background: var(--primary); }
.bm-kpi-text {
  font-size: 0.58rem; font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.4); white-space: nowrap;
}

/* ============================================================
   12b. MARQUEE BAND
   ============================================================ */

.marquee-band {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 50px;
  display: flex;
  align-items: center;
}
.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-band::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}
.marquee-band::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-inner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mq-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding: 0 1.5rem;
}
.mq-sep {
  color: var(--cta);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.8;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   13. TRUST BAR
   ============================================================ */

.trust-bar { background: var(--bg-soft); padding: var(--sec-sm) 0; }
.trust-bar-inner { display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 3.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label { font-size: 0.8rem; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; }

/* ============================================================
   14. INDUSTRIES
   ============================================================ */

.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.industry-card:hover { transform: translateY(-6px) scale(1.005); box-shadow: var(--shadow-lg); }

.ind-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.industry-card:hover .ind-bg { transform: scale(1.08); }

.ind-construction .ind-bg { background: linear-gradient(145deg, #1e3a5f 0%, #2d5080 50%, #3b6aaa 100%); }
.ind-cleaning    .ind-bg { background: linear-gradient(145deg, #0e4d56 0%, #1a7570 50%, #24a094 100%); }
.ind-landscaping .ind-bg { background: linear-gradient(145deg, #1a4520 0%, #2d6e30 50%, #3a9640 100%); }
.ind-restaurant  .ind-bg { background: linear-gradient(145deg, #4a1800 0%, #7c3200 50%, #b85400 100%); }

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,21,0.95) 0%, rgba(6,9,21,0.55) 40%, rgba(6,9,21,0.10) 75%, transparent 100%);
  z-index: 1;
}
.ind-body { position: relative; z-index: 2; padding: 2rem; }
.ind-body h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.ind-body p  { color: rgba(255,255,255,0.72); font-size: 0.9rem; line-height: 1.55; margin-bottom: 1.25rem; max-width: 340px; }

/* ============================================================
   15. FEATURES
   ============================================================ */

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.features-grid .icon-wrap { background: var(--cta-light); width: 56px; height: 56px; }
.features-grid .icon-wrap svg { stroke: var(--cta); width: 24px; height: 24px; }

/* ============================================================
   16. PORTFOLIO
   ============================================================ */

.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.port-industry  { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0.5rem 0 0.3rem; }
.port-desc      { font-size: 0.85rem; line-height: 1.55; margin-bottom: 1.25rem; }

/* ============================================================
   17. PROCESS
   ============================================================ */

/* Vertical process list */
.process-list {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 3.5rem auto 0;
}
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}
.process-item-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step-connector {
  width: 2px;
  flex: 1;
  min-height: 52px;
  background: linear-gradient(to bottom, var(--cta), var(--border));
  opacity: 0.35;
  margin: 6px 0;
}
.process-item-body {
  padding: 0 0 3rem;
}
.process-item:last-child .process-item-body { padding-bottom: 0; }
.process-item-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; margin-top: 0.7rem; }
.process-item-body p  { font-size: 0.95rem; max-width: 520px; }

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  position: relative; z-index: 1;
}

/* ============================================================
   18. TRUST SECTION (5 cards — 3 + 2 centered)
   ============================================================ */

.trust-row1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.trust-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
  max-width: 66.67%;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   19. TESTIMONIALS
   ============================================================ */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.2s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
/* Decorative large quote mark */
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; right: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cta);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}
.stars { display: flex; gap: 3px; margin-bottom: 0.6rem; }
.star  { width: 13px; height: 13px; color: #f59e0b; fill: #f59e0b; }
.testi-quote {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 0.5rem; }
.author-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.78rem; color: var(--text); }
.author-biz  { font-size: 0.7rem; color: var(--muted); }

/* ============================================================
   20. CTA BAND
   ============================================================ */

.cta-band {
  background: #f5f5f7;
  padding: var(--sec) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2   { color: var(--text); margin-bottom: 1rem; font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -0.04em; }
.cta-band p    { color: var(--muted); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   21. CONTACT SECTION
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.contact-sidebar > p { margin-bottom: 1.75rem; font-size: 0.9rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.detail-icon {
  width: 38px; height: 38px;
  background: var(--cta-light);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.detail-icon svg { width: 17px; height: 17px; stroke: var(--cta); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.detail-text strong { display: block; font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.detail-text span   { font-size: 0.9rem; font-weight: 600; color: var(--text); }

.contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ============================================================
   22. FOOTER
   ============================================================ */

.site-footer {
  background: #f5f5f7;
  color: var(--muted);
  padding: var(--sec-sm) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.footer-brand .logo { color: var(--text); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); max-width: 260px; line-height: 1.65; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col a  { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.55rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--cta-dark); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--border-strong);
}

/* ============================================================
   23. MOBILE ACTIONS BAR
   ============================================================ */

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(15,23,42,0.08);
}
.mobile-bar a { flex: 1; text-align: center; font-size: 0.85rem; }

/* ============================================================
   24. ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Stagger */
.industry-grid  .industry-card:nth-child(2) { transition-delay: 0.08s; }
.industry-grid  .industry-card:nth-child(3) { transition-delay: 0.16s; }
.industry-grid  .industry-card:nth-child(4) { transition-delay: 0.24s; }
.features-grid  .card-clean:nth-child(2)    { transition-delay: 0.07s; }
.features-grid  .card-clean:nth-child(3)    { transition-delay: 0.14s; }
.features-grid  .card-clean:nth-child(4)    { transition-delay: 0.21s; }

/* Process stagger */
.process-list .process-item:nth-child(2) { transition-delay: 0.10s; }
.process-list .process-item:nth-child(3) { transition-delay: 0.20s; }
.process-list .process-item:nth-child(4) { transition-delay: 0.30s; }

/* Stat pop animation */
@keyframes statPop {
  from { transform: scale(0.72); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.stat-item.visible .stat-num {
  animation: statPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.stat-item:nth-child(2).visible .stat-num { animation-delay: 0.10s; }
.stat-item:nth-child(3).visible .stat-num { animation-delay: 0.20s; }
.stat-item:nth-child(4).visible .stat-num { animation-delay: 0.30s; }
.features-grid  .card-glass:nth-child(3)    { transition-delay: 0.14s; }
.features-grid  .card-glass:nth-child(4)    { transition-delay: 0.21s; }
.portfolio-grid .card-glass:nth-child(2)    { transition-delay: 0.07s; }
.portfolio-grid .card-glass:nth-child(3)    { transition-delay: 0.14s; }
.portfolio-grid .card-glass:nth-child(4)    { transition-delay: 0.21s; }
.process-grid   .process-step:nth-child(2)  { transition-delay: 0.10s; }
.process-grid   .process-step:nth-child(3)  { transition-delay: 0.20s; }
.process-grid   .process-step:nth-child(4)  { transition-delay: 0.30s; }
.trust-row1     .card-glass:nth-child(2)    { transition-delay: 0.08s; }
.trust-row1     .card-glass:nth-child(3)    { transition-delay: 0.16s; }
.trust-row2     .card-glass:nth-child(2)    { transition-delay: 0.24s; }

/* Hero entrance */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes heroRight {
  from { opacity: 0; transform: translateX(40px); filter: blur(6px); }
  to   { opacity: 1; transform: translateX(0);    filter: blur(0); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.hero-content { animation: heroUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.hero-visual  { animation: heroRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }

/* ============================================================
   25. RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  /* industry-grid is already 2-col by default */
  .industry-card  { min-height: 440px; }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row2 { max-width: 100%; grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --sec: 72px; --sec-sm: 56px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .lang-toggle  { display: none; }

  .nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(250,249,246,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    z-index: 190;
    box-shadow: 0 8px 24px rgba(15,23,42,0.1);
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.75rem 1rem; font-size: 0.95rem; border-radius: var(--radius-sm); }
  .btn-call { margin-left: 0 !important; margin-top: 0.5rem; justify-content: center; border-radius: var(--radius-sm) !important; }

  .menu-toggle { display: flex; }
  .mobile-bar  { display: flex; }
  body { padding-bottom: 70px; }

  .testi-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Hero 2-col collapse */
  .hero { min-height: auto; padding: 100px 0 56px; align-items: flex-start; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-content { align-items: center; text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-proof { justify-content: center; }
}

@media (max-width: 640px) {
  :root { --sec: 64px; --sec-sm: 48px; }
  .industry-grid  { grid-template-columns: 1fr; }
  .industry-card  { min-height: 380px; }
  .features-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .trust-row1, .trust-row2 { grid-template-columns: 1fr; max-width: 100%; }
  .footer-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .process-item   { grid-template-columns: 60px 1fr; gap: 1rem; }
  .step-num       { width: 48px; height: 48px; font-size: 1.1rem; }

  .stat-num       { font-size: 2rem; }
  .stat-item { border-right: none; padding: 0.9rem 1.5rem; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .trust-bar-inner { flex-direction: column; align-items: stretch; }

  .hero { padding: 96px 0 48px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 340px; }
  .hero-visual { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 340px; }
}

/* ============================================================
   26. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero-content, .hero-visual { animation: none !important; opacity: 1 !important; }
}
