/* ─── K.R App Building Private Limited — style.css ─────────────────────────── */
/* Palette: Deep Navy + Silver + White | Style: Diagonal sections, full-width bold */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #162032;
  --navy-light:  #1e3a5f;
  --blue:        #2563eb;
  --blue-light:  #3b82f6;
  --silver:      #94a3b8;
  --silver-light:#cbd5e1;
  --white:       #ffffff;
  --ice:         #f0f4f8;
  --ice-dark:    #e2e8f0;
  --fg:          #0d1b2a;
  --fg-muted:    #64748b;
  --border:      #e2e8f0;
  --border-dark: rgba(255,255,255,0.08);
  --radius:      2px;
  --shadow:      0 4px 24px rgba(13,27,42,0.08);
  --shadow-lg:   0 12px 48px rgba(13,27,42,0.14);
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--fg);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; font-weight: 700; }
p  { line-height: 1.75; }
.text-muted { color: var(--fg-muted); }

/* ─── Container ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); }
.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-dark);
  border-color: #cbd5e1;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-lg { padding: 0.85rem 2rem; font-size: 0.82rem; }

/* ─── Badges ─────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 1px;
  background: var(--ice-dark);
  color: var(--fg-muted);
}
.badge-blue { background: rgba(37,99,235,0.1); color: var(--blue); }
.badge-dark { background: rgba(13,27,42,0.6); color: rgba(255,255,255,0.85); }

/* ─── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-ice { background: var(--ice); }
.section-header { margin-bottom: 3.5rem; }
.section-header.text-center { text-align: center; }
.section-header h2 { margin-top: 0.75rem; }

.label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.label-row-center { justify-content: center; }
.label-line { height: 1px; width: 2.5rem; background: var(--blue); }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ─── Grids ──────────────────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── Cards ──────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
}
.card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--blue);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon span {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-text .name {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-text .sub {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0.4rem 0.75rem;
  border-radius: 1px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.nav-phone svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: auto;
}
.hamburger svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 99;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu-footer a { font-size: 0.85rem; color: rgba(255,255,255,0.55); border: none; padding: 0; }

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    repeating-linear-gradient(35deg, transparent, transparent 80px, rgba(37,99,235,0.04) 80px, rgba(37,99,235,0.04) 81px);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 8rem;
  max-width: 700px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-eyebrow span {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--blue); }
.hero p { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: var(--navy-mid);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5rem;
}
.hero-visual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  padding: 1.25rem;
  text-align: center;
}
.hero-metric-card .val {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
}
.hero-metric-card .lbl {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ─── Stats bar ──────────────────────────────────────────────────────────────── */
.stats-bar { background: var(--blue); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.stat-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

/* ─── Feature strip ──────────────────────────────────────────────────────────── */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 2.5rem 0; }
.feature-strip-item {
  padding: 1.5rem 1.25rem;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.feature-strip-item:first-child { border-left: none; }
.feature-strip-item svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 0.75rem;
}
.feature-strip-item h4 { font-size: 0.85rem; color: var(--white); margin-bottom: 0.4rem; }
.feature-strip-item p { font-size: 0.75rem; color: var(--silver); line-height: 1.65; }

/* ─── Service cards ──────────────────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.service-card .card-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

/* ─── Promise boxes ──────────────────────────────────────────────────────────── */
.promise-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.promise-box svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.1rem;
}
.promise-box strong { display: block; font-size: 0.85rem; margin-bottom: 0.3rem; }
.promise-box p { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.65; }

/* ─── Portfolio ──────────────────────────────────────────────────────────────── */
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.portfolio-visual {
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
}
.portfolio-visual-letter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
}
.portfolio-badge { position: relative; z-index: 1; }
.portfolio-body { padding: 1.25rem; }
.portfolio-highlights { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.75rem; }
.portfolio-tech { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.5rem; }

/* ─── Process steps ──────────────────────────────────────────────────────────── */
.process-step {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(37,99,235,0.15);
  line-height: 1;
}
.check-list { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
.check-list li {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding-left: 1.1rem;
  position: relative;
}
.check-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.7rem;
}

/* ─── Timeline ───────────────────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 3.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  position: absolute;
  left: -5rem;
  top: 0.1rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.06em;
}
.timeline-dot {
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-body h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.timeline-body p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.7; }

/* ─── Blog ───────────────────────────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-visual {
  height: 130px;
  background: var(--navy-mid);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.blog-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
}
.blog-body { padding: 1.25rem; }
.blog-meta { font-size: 0.68rem; color: var(--fg-muted); margin-top: 0.75rem; }

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-section { margin-bottom: 2.5rem; }
.faq-category {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}
.faq-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.8; padding-bottom: 1.1rem; }

/* ─── Contact ────────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background: rgba(37,99,235,0.08);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.85rem; color: var(--fg); line-height: 1.65; }
.contact-info-value a { color: var(--blue); }

/* ─── Form ───────────────────────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 0.4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--fg);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.68rem; color: var(--fg-muted); margin-top: 0.3rem; }
.form-success { text-align: center; padding: 2rem 0; }
.check-circle {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(37,99,235,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.check-circle svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Page hero ──────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 9rem 0 6rem;
  overflow: hidden;
}
.page-hero-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero-content h1 { color: var(--white); margin-top: 0.75rem; margin-bottom: 1.25rem; }
.page-hero-content p { color: rgba(255,255,255,0.5); font-size: 1rem; }
.page-hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-hero-diagonal-ice {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--ice);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ─── Principles bar ─────────────────────────────────────────────────────────── */
.principles-bar { background: var(--navy-mid); padding: 2rem 0; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.principle-item:first-child { border-left: none; }
.principle-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.1rem;
}
.principle-item strong { display: block; font-size: 0.78rem; color: var(--white); margin-bottom: 0.2rem; }
.principle-item p { font-size: 0.7rem; color: var(--silver); line-height: 1.5; }

/* ─── Info box ───────────────────────────────────────────────────────────────── */
.info-box {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.info-box svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.15rem;
}
.info-box p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.7; }

/* ─── CTA box ────────────────────────────────────────────────────────────────── */
.cta-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}
.cta-box h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.5); font-size: 0.95rem; position: relative; z-index: 1; margin-bottom: 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; z-index: 1; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.1rem;
}
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.footer-contact-item a:hover { color: rgba(255,255,255,0.7); }
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.75); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
}
.hours-day { color: rgba(255,255,255,0.4); }
.hours-time { color: #e2e8f0; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .feature-strip, .principles-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 2.5rem 1fr; }
  .process-step > div:last-child { grid-column: 2; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .contact-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: flex; }
  .hero-content { max-width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
}
