/*
Theme Name: Deep Sky Reliance Solutions
Theme URI: https://deepskyreliance.com
Author: Deep Sky Reliance Solutions
Author URI: https://deepskyreliance.com
Description: Corporate GEO (Generative Engine Optimization) theme for Deep Sky Reliance Solutions — deep navy & gold B2B design.
Version: 1.0.0
License: Proprietary
Text Domain: deepsky
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --navy:       #0A1628;
  --navy-mid:   #112240;
  --navy-light: #1A3050;
  --gold:       #C9A84C;
  --gold-light: #E2C170;
  --gold-pale:  #F5E8C8;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --grey-100:   #EEF0F4;
  --grey-300:   #C4CAD4;
  --grey-500:   #8892A0;
  --grey-700:   #475060;
  --text-dark:  #111827;
  --text-body:  #374151;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --shadow-card: 0 4px 24px rgba(10,22,40,0.12);
  --shadow-hover: 0 8px 40px rgba(10,22,40,0.22);
  --transition: 0.28s ease;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-700);
  max-width: 600px;
  margin: 0 auto 56px;
}
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 20px 0;
}
#site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text .brand-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.site-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  text-decoration: none;
}
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: all var(--transition);
}
.site-nav .nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0D2A4A 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--gold); }
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: left; }
.hero-stat-item .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-graphic {
  width: 100%;
  max-width: 480px;
}

/* =========================================================
   LOGOS / TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--navy-mid);
  padding: 28px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo-item {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.trust-logo-item:hover { color: rgba(255,255,255,0.6); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works { background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step-counter;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--navy); }
.step-card p { font-size: 0.92rem; color: var(--grey-700); line-height: 1.7; }
.step-connector {
  display: none;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--gold); }
.service-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 14px; }
.service-card p { color: rgba(255,255,255,0.68); font-size: 0.92rem; line-height: 1.75; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 20px;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 10px; color: var(--gold-light); }

/* =========================================================
   CAROUSEL / EXAMPLES
   ========================================================= */
.carousel-section { background: var(--off-white); }
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 8px;
}
.carousel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.carousel-card-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.carousel-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(201,168,76,0.2) 0%, transparent 60%);
}
.slide-industry-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.slide-metric-block {
  text-align: center;
  position: relative;
  z-index: 1;
}
.slide-metric-big {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.slide-metric-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.carousel-card-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel-card-content .eyebrow { font-size: 0.7rem; }
.carousel-card-content h3 {
  font-size: 1.55rem;
  margin-bottom: 16px;
  color: var(--navy);
}
.carousel-card-content p {
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.result-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.result-tag {
  background: var(--grey-100);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.carousel-btn:hover {
  background: var(--navy);
  color: var(--gold);
}
.carousel-dots {
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-300);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* =========================================================
   CASE STUDIES
   ========================================================= */
.case-studies { background: var(--white); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  border: 1px solid var(--grey-100);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.case-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.case-card-header::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
}
.case-industry {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.case-company {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.case-challenge {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.case-card-body { padding: 32px 36px; }
.case-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.case-result-item { }
.case-result-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.case-result-label {
  font-size: 0.78rem;
  color: var(--grey-700);
  margin-top: 4px;
}
.case-excerpt {
  font-size: 0.92rem;
  color: var(--grey-700);
  line-height: 1.75;
  border-top: 1px solid var(--grey-100);
  padding-top: 20px;
}
.case-quote {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--navy);
  margin-top: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.case-quote-attr {
  font-size: 0.78rem;
  color: var(--grey-500);
  font-style: normal;
  margin-top: 6px;
  padding-left: 16px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0D2A4A 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); position: relative; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 40px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 16px; font-size: 1.5rem; }
.contact-info p { color: var(--grey-700); margin-bottom: 32px; line-height: 1.8; }
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-detail-text strong { display: block; font-size: 0.85rem; color: var(--navy); margin-bottom: 2px; }
.contact-detail-text span { font-size: 0.92rem; color: var(--grey-700); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; }
/* Consent notice */
.consent-notice {
  font-size: 0.82rem;
  color: var(--grey-500);
  margin-bottom: 20px;
  line-height: 1.6;
}
.consent-notice a { color: var(--gold); text-decoration: underline; }

/* Form messages */
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  display: none;
  margin-top: 16px;
}
.form-msg.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #6EE7B7;
  display: block;
}
.form-msg.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
  display: block;
}


/* Field error states */
.form-group input.field-error,
.form-group textarea.field-error,
.form-group select.field-error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.15);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-about p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.social-link svg { width: 16px; height: 16px; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 72px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* =========================================================
   ANIMATIONS (scroll reveal)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .carousel-card { grid-template-columns: 1fr; }
  .carousel-card-visual { min-height: 200px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* ── Logo: prevent brand name wrapping ── */
  .brand-name { white-space: nowrap; font-size: 0.92rem !important; }
  .brand-tag  { font-size: 0.6rem !important; }
  .logo-mark  { width: 34px !important; height: 34px !important; }

  /* ── Mobile nav overlay ──
     Overlay sits on the .site-nav wrapper, ul inherits layout */
  .site-nav ul { display: none; }

  .site-nav.open {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav.open ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    position: static;
    background: transparent;
    inset: auto;
  }
  .site-nav.open ul a {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
  }
  .site-nav.open ul .nav-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 12px 28px;
    border-radius: 4px;
  }

  /* Hamburger → X animation when open */
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Hero ── */
  .hero-grid { padding: 100px 0 60px; }
  .hero-title { font-size: 2rem; }
  .hero-lead  { font-size: 1rem; }
  .hero-ctas  { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .hero-stat-item .stat-num { font-size: 1.6rem; }

  /* ── Trust strip ── */
  .trust-strip .container { flex-direction: column; gap: 16px; text-align: center; }
  .trust-logos { gap: 20px; }

  /* ── Steps / Services ── */
  .steps-grid    { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  /* ── Carousel ── */
  .carousel-card-content { padding: 28px 24px; }
  .carousel-card-content h3 { font-size: 1.2rem; }
  .slide-metric-big { font-size: 3rem; }

  /* ── Case studies ── */
  .case-grid    { grid-template-columns: 1fr; }
  .case-results { grid-template-columns: 1fr 1fr; }

  /* ── About differentiators section ── */
  #about .container > div { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* ── Contact form ── */
  .form-row         { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* ── Footer ── */
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .footer-legal   { justify-content: center; }
}
