:root {
  --dark-blue: #2662A9;
  --light-blue: #2895C0;
  --red: #C02328;
  --dark-grey: #373D3F;
  --grey: #5A5A5A;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --light-border: #E2E8F0;
  --text-body: #2D3748;
  --text-muted: #718096;
}

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

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
}

/* ===== NAV ===== */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--light-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 1px 12px rgba(38,98,169,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { width: 44px; height: 44px; }

.logo-text { display: flex; flex-direction: column; }

.logo-text .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark-blue);
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-text .pvt {
  font-size: 10px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-grey);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.nav-links a:hover { background: var(--off-white); color: var(--dark-blue); }
.nav-links a.active { color: var(--dark-blue); background: rgba(38,98,169,0.06); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  transition: all 0.2s !important;
}

.nav-cta:hover { background: #a01e22 !important; transform: translateY(-1px); }

/* ===== SHARED SECTION STYLES ===== */
section { padding: 80px 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.65;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  display: inline-block;
}

.btn-primary:hover { background: #a01e22; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,35,40,0.35); }

.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-white {
  background: white;
  color: var(--red);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #a01e22 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: #0d2545;
  color: rgba(255,255,255,0.65);
  padding: 48px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  margin-top: 12px;
  line-height: 1.65;
}

footer h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 16px;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

footer ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.2s;
}

footer ul li a:hover { color: #5bc8f0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== PAGE HERO (shared pattern) ===== */
.page-hero {
  padding: 72px 0;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== HOME: HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a4b8a 50%, #0f3566 100%);
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(40,149,192,0.18) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,35,40,0.1) 0%, transparent 70%);
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(40,149,192,0.25);
  color: #7dd3f0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(40,149,192,0.35);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 68px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: #5bc8f0; }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
  z-index: 1;
}

.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: luminosity;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark-blue) 0%, transparent 50%);
}

/* ===== HOME: VALUE STRIP ===== */
.value-strip { background: var(--dark-grey); padding: 0; }

.value-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }

.value-item {
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.value-item:last-child { border-right: none; }

.value-icon {
  width: 36px; height: 36px;
  background: rgba(40,149,192,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-icon svg { width: 18px; height: 18px; fill: #5bc8f0; }
.value-text .vt { font-size: 14px; font-weight: 700; color: white; margin-bottom: 3px; }
.value-text .vs { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ===== HOME: ABOUT INTRO ===== */
.about-intro { background: var(--off-white); }

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: white;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(192,35,40,0.3);
}

.about-badge .num { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; line-height: 1; }
.about-badge .lbl { font-size: 12px; font-weight: 500; opacity: 0.9; margin-top: 2px; }

.about-points { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

.about-point { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-body); }

.about-point .dot {
  width: 8px; height: 8px;
  background: var(--light-blue);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ===== HOME: SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-blue), var(--light-blue));
  transform: scaleX(0);
  transition: transform 0.25s;
}

.service-card:hover { border-color: rgba(38,98,169,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(38,98,169,0.12); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(38,98,169,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg { width: 24px; height: 24px; fill: var(--dark-blue); }

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== HOME: WHY US ===== */
.why-us { background: var(--dark-blue); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.stat-item { padding: 36px 28px; text-align: center; background: rgba(255,255,255,0.04); }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #5bc8f0;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.60); font-weight: 500; letter-spacing: 0.3px; }

.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.why-check {
  width: 28px; height: 28px;
  background: rgba(40,149,192,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

.why-check svg { width: 14px; height: 14px; fill: #5bc8f0; }
.why-point p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.55; }
.why-point strong { color: white; font-weight: 600; }

/* ===== HOME: INDUSTRIES ===== */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }

.industry-pill {
  background: var(--off-white);
  border: 1px solid var(--light-border);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
  transition: all 0.2s;
}

.industry-pill:hover { background: white; border-color: rgba(38,98,169,0.3); box-shadow: 0 4px 16px rgba(38,98,169,0.08); }

.ind-dot { width: 10px; height: 10px; background: var(--light-blue); border-radius: 50%; flex-shrink: 0; }

.industry-pill h4 { font-size: 15px; font-weight: 600; color: var(--dark-blue); margin-bottom: 2px; }
.industry-pill p { font-size: 12px; color: var(--text-muted); }

/* ===== ABOUT PAGE ===== */
.snapshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

.snapshot-card {
  background: white;
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 28px;
}

.snapshot-card .label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--light-blue); margin-bottom: 8px; }
.snapshot-card .value { font-size: 16px; font-weight: 600; color: var(--dark-blue); line-height: 1.4; }

.mv-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.mv-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 36px;
  border-left: 4px solid var(--dark-blue);
}

.mv-card.vision { border-left-color: var(--light-blue); }

.mv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.mv-card blockquote {
  font-size: 17px; font-style: italic;
  color: var(--dark-grey);
  line-height: 1.65;
  margin-bottom: 14px;
  border: none; padding: 0;
}

.mv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }

.value-card {
  background: white;
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 28px;
  display: flex; gap: 16px; align-items: flex-start;
}

.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 800;
  color: rgba(38,98,169,0.12);
  line-height: 1; flex-shrink: 0;
}

.value-card h4 { font-size: 16px; font-weight: 700; color: var(--dark-blue); margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.kochi-section { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.kochi-img { border-radius: 12px; overflow: hidden; height: 340px; }
.kochi-img img { width: 100%; height: 100%; object-fit: cover; }

.kochi-points { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

.kochi-point { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-body); line-height: 1.55; }

.kochi-point .kp-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

/* ===== SERVICES PAGE ===== */
.service-detail { padding: 64px 0; border-bottom: 1px solid var(--light-border); }
.service-detail:last-child { border-bottom: none; }

.service-detail-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px; font-weight: 800;
  color: rgba(38,98,169,0.08);
  line-height: 1; margin-bottom: 4px;
}

.service-detail h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px; letter-spacing: 0.3px;
}

.service-detail p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }

.service-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.service-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-body); }

.service-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--light-blue);
  border-radius: 50%;
  margin-top: 7px; flex-shrink: 0;
}

.ideal-tag {
  display: inline-block;
  background: rgba(38,98,169,0.08);
  color: var(--dark-blue);
  font-size: 12px; font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  margin-top: 16px;
}

/* ===== HOW IT WORKS PAGE ===== */
.steps-timeline { position: relative; margin-top: 56px; }

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 40px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--dark-blue), var(--light-blue));
}

.step-item { display: flex; gap: 36px; align-items: flex-start; margin-bottom: 48px; }

.step-num-wrap { flex-shrink: 0; width: 80px; display: flex; justify-content: center; }

.step-num {
  width: 48px; height: 48px;
  background: var(--dark-blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--dark-blue);
  position: relative; z-index: 1;
}

.step-num.red { background: var(--red); box-shadow: 0 0 0 3px var(--red); }

.step-content {
  background: white;
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 28px 32px;
  flex: 1;
  transition: all 0.2s;
}

.step-content:hover { box-shadow: 0 8px 32px rgba(38,98,169,0.1); border-color: rgba(38,98,169,0.25); }

.step-week { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--light-blue); margin-bottom: 6px; }

.step-content h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; }
.step-content p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }

.step-bullets { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.step-bullets li { font-size: 13px; color: var(--text-body); display: flex; align-items: center; gap: 8px; }

.step-bullets li::before { content: ''; width: 5px; height: 5px; background: var(--light-blue); border-radius: 50%; flex-shrink: 0; }

.security-section { background: var(--dark-grey); padding: 80px 0; }

.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }

.sec-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 24px; }
.sec-card h4 { font-size: 15px; font-weight: 700; color: #5bc8f0; margin-bottom: 8px; }
.sec-card p { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.6; }

.gains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

.gain-card { background: white; border: 1px solid var(--light-border); border-radius: 12px; padding: 28px; text-align: center; }

.gain-icon { width: 56px; height: 56px; background: rgba(38,98,169,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.gain-icon svg { width: 28px; height: 28px; fill: var(--dark-blue); }
.gain-card h4 { font-size: 16px; font-weight: 700; color: var(--dark-blue); margin-bottom: 8px; }
.gain-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; padding: 80px 0; }

.contact-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--dark-blue); margin-bottom: 20px; }

.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }

.cd-icon { width: 36px; height: 36px; background: rgba(38,98,169,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon svg { width: 18px; height: 18px; fill: var(--dark-blue); }

.cd-text .label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.cd-text .value { font-size: 15px; font-weight: 600; color: var(--dark-blue); }

.discovery-box { background: rgba(38,98,169,0.05); border: 1px solid rgba(38,98,169,0.15); border-radius: 12px; padding: 24px; margin-top: 32px; }
.discovery-box h4 { font-size: 16px; font-weight: 700; color: var(--dark-blue); margin-bottom: 12px; }
.discovery-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.discovery-box ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-body); }
.discovery-box ul li::before { content: '✓'; color: var(--light-blue); font-weight: 700; flex-shrink: 0; }

.contact-form-wrap { background: white; border: 1px solid var(--light-border); border-radius: 16px; padding: 40px; box-shadow: 0 8px 40px rgba(38,98,169,0.08); }
.contact-form-wrap h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--dark-blue); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }

.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--dark-grey); margin-bottom: 6px; letter-spacing: 0.2px; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  background: white;
  outline: none;
  transition: border-color 0.2s;
  appearance: auto;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--dark-blue); box-shadow: 0 0 0 3px rgba(38,98,169,0.08); }

.form-field textarea { min-height: 100px; resize: vertical; }

.form-submit {
  width: 100%;
  background: var(--dark-blue);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.form-submit:hover { background: #1d4e85; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(38,98,169,0.3); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }

.faq-item { background: white; border: 1px solid var(--light-border); border-radius: 10px; overflow: hidden; }

.faq-q {
  padding: 20px 24px;
  font-size: 16px; font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}

.faq-q::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--light-blue); transition: transform 0.2s; line-height: 1; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 16px 24px 20px;
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--light-border);
}

.faq-item.open .faq-a { display: block; }

/* ===== HAMBURGER NAV ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
  z-index: 200;
}

.nav-hamburger:hover { background: var(--off-white); }

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-grey);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE — 1024px (small laptops / large tablets) ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .hero h1 { font-size: 56px; }
  .hero-sub { font-size: 17px; }

  .section-title { font-size: 34px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .gains-grid { grid-template-columns: repeat(2, 1fr); }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===== RESPONSIVE — 768px (tablets) ===== */
@media (max-width: 768px) {
  /* --- Container --- */
  .container { padding: 0 20px; }
  section { padding: 56px 0; }

  /* --- Nav: hamburger --- */
  nav { padding: 0 20px; height: 64px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(38,98,169,0.12);
    border-top: 1px solid var(--light-border);
    z-index: 150;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 13px 20px !important;
  }

  /* --- Typography --- */
  .hero h1 { font-size: 44px; letter-spacing: 0; }
  .hero-sub { font-size: 16px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns a { text-align: center; }
  .hero-visual { display: none; }

  .section-title { font-size: 30px; }
  .section-subtitle { font-size: 15px; }

  .page-hero { padding: 52px 0; }
  .page-hero h1 { font-size: 42px; }
  .page-hero p { font-size: 16px; }

  /* --- Value strip --- */
  .value-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .value-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .value-item:nth-last-child(-n+2) { border-bottom: none; }

  /* --- About intro --- */
  .about-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: -16px; right: 12px; padding: 12px 16px; }
  .about-badge .num { font-size: 28px; }

  /* --- Services grid --- */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* --- Why Us stats --- */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 40px; }
  .why-points { grid-template-columns: 1fr; }

  /* --- Industries --- */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* --- CTA banner --- */
  .cta-banner { padding: 52px 0; }
  .cta-banner h2 { font-size: 36px; }
  .cta-banner p { font-size: 15px; }
  .cta-banner-btns { flex-direction: column; align-items: center; gap: 10px; }

  /* --- About page --- */
  .mv-section { grid-template-columns: 1fr; gap: 24px; }
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .kochi-section { grid-template-columns: 1fr; gap: 32px; }
  .kochi-img { height: 260px; }
  .values-grid { grid-template-columns: 1fr; }

  /* --- Services page --- */
  .service-detail { padding: 48px 0; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 24px; }
  .service-num { font-size: 56px; }

  /* --- How It Works --- */
  .steps-timeline::before { left: 24px; }
  .step-num-wrap { width: 48px; }
  .step-num { width: 40px; height: 40px; font-size: 17px; }
  .step-content { padding: 20px 22px; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .gains-grid { grid-template-columns: repeat(2, 1fr); }

  /* --- Contact --- */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* --- Footer --- */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* --- Inline grids in About story section --- */
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ===== RESPONSIVE — 480px (mobile phones) ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 44px 0; }

  /* --- Nav --- */
  nav { height: 60px; }
  .nav-links { top: 60px; }
  .logo-text .brand { font-size: 15px; }
  .logo-text .pvt { display: none; }
  .logo-icon { width: 36px; height: 36px; }

  /* --- Hero --- */
  .hero { min-height: auto; padding: 56px 0 48px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; max-width: 100%; }

  /* --- Page hero --- */
  .page-hero { padding: 44px 0; }
  .page-hero h1 { font-size: 34px; }
  .page-hero p { font-size: 15px; }

  /* --- Section typography --- */
  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 14px; }

  /* --- Value strip: single column --- */
  .value-strip-inner { grid-template-columns: 1fr; }
  .value-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .value-item:last-child { border-bottom: none; }

  /* --- About badge --- */
  .about-badge { display: none; }

  /* --- Services grid: single column --- */
  .services-grid { grid-template-columns: 1fr; }

  /* --- Stats: single column --- */
  .stats-row { grid-template-columns: 1fr; }

  /* --- Industries: single column --- */
  .industries-grid { grid-template-columns: 1fr; }

  /* --- CTA banner --- */
  .cta-banner { padding: 44px 0; }
  .cta-banner h2 { font-size: 28px; }

  /* --- About page --- */
  .snapshot-grid { grid-template-columns: 1fr; }
  .kochi-img { height: 220px; }

  /* --- Services --- */
  .service-num { font-size: 44px; }

  /* --- How It Works --- */
  .step-item { gap: 16px; }
  .steps-timeline::before { left: 20px; }
  .step-num-wrap { width: 40px; }
  .step-num { width: 36px; height: 36px; font-size: 15px; border-width: 2px; }
  .security-grid { grid-template-columns: 1fr; }
  .gains-grid { grid-template-columns: 1fr; }

  /* --- Footer: single column --- */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  /* --- Buttons --- */
  .btn-primary, .btn-outline, .btn-white, .btn-outline-white {
    padding: 12px 22px;
    font-size: 14px;
  }
  .form-submit { font-size: 14px; padding: 13px; }
}
