/* ============================================================
   ORYZON COLD TRANSPORT — Main Stylesheet
   OryzonCold.com | ZR2M Enterprises, LLC
   ============================================================ */

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

/* ---- VARIABLES ---- */
:root {
  --navy:        #1A3A5C;
  --navy-dark:   #0F2438;
  --navy-mid:    #1E4976;
  --ice:         #4FC3F7;
  --ice-light:   #B3E5FC;
  --ice-bg:      #EBF7FF;
  --orange:      #E8582A;
  --orange-dark: #C94820;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --text:        #1C1C1C;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm:  0 2px 8px  rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease: all 0.25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--navy-dark); }
h1 { font-size: clamp(36px,5.5vw,60px); font-weight: 800; }
h2 { font-size: clamp(26px,4vw,40px);  font-weight: 700; }
h3 { font-size: clamp(18px,3vw,24px);  font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ice); display: block; margin-bottom: 10px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  transition: var(--ease); white-space: nowrap; cursor: pointer; border: none;
}
.btn-primary  { background: var(--orange); color: #fff; }
.btn-primary:hover  { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,88,42,0.4); }
.btn-outline  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }
.btn-outline:hover  { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-navy     { background: var(--navy); color: #fff; }
.btn-navy:hover     { background: var(--navy-mid); transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ---- SECTIONS ---- */
.section    { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.bg-light   { background: var(--gray-50); }
.bg-navy    { background: var(--navy); }
.bg-navy-dk { background: var(--navy-dark); }
.bg-ice     { background: var(--ice-bg); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p  { font-size: 18px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,28,44,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(79,195,247,0.12);
  transition: var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: #fff; letter-spacing: 4px; text-transform: uppercase;
}
.nav-logo-sub {
  font-family: var(--font-head); font-size: 8px; font-weight: 400;
  color: var(--ice); letter-spacing: 5px; text-transform: uppercase;
}
.nav-menu {
  display: flex; align-items: center; gap: 28px;
}
.nav-menu a {
  font-family: var(--font-head); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 0.4px; transition: var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--ice); }
.nav-cta-btn {
  background: var(--orange); color: #fff !important;
  padding: 9px 20px; border-radius: var(--r-sm);
  font-weight: 600 !important; transition: var(--ease) !important;
}
.nav-cta-btn:hover { background: var(--orange-dark) !important; color: #fff !important; }
.nav-phone-pill {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--ice); transition: var(--ease);
}
.nav-phone-pill:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--ease);
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy-dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, #07182B 0%, #112B46 45%, #0C2236 100%);
}
/* Subtle grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,195,247,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,195,247,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
/* Glow accents */
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-glow-1 {
  top: -180px; right: -180px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,195,247,0.09) 0%, transparent 65%);
}
.hero-glow-2 {
  bottom: -120px; left: -120px; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(26,58,92,0.6) 0%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; padding: 130px 0 90px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(79,195,247,0.10); border: 1px solid rgba(79,195,247,0.28);
  border-radius: 100px; padding: 8px 18px; margin-bottom: 30px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; animation: livepulse 2s infinite;
}
.hero-badge-text {
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  color: var(--ice); letter-spacing: 1px; text-transform: uppercase;
}
.hero h1 { color: #fff; margin-bottom: 22px; line-height: 1.08; }
.hero h1 em { font-style: normal; color: var(--ice); }
.hero-lead {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 620px; margin-bottom: 14px; line-height: 1.75;
}
.hero-tagline {
  font-family: var(--font-head); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.38); letter-spacing: 0.5px; margin-bottom: 42px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: floatdown 2.2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, var(--ice), transparent);
}
.hero-scroll-label {
  font-family: var(--font-head); font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--navy); padding: 18px 0; }
.trust-list {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 36px;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.78); white-space: nowrap;
}
.trust-check { color: var(--ice); font-size: 13px; }
.trust-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.15); }

/* ============================================================
   SERVICE CARDS (Home 4-grid)
   ============================================================ */
.cards-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
}
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 30px 24px;
  position: relative; overflow: hidden; transition: var(--ease);
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--ice));
  transform: scaleX(0); transition: var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--ice-light); }
.service-card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 50px; height: 50px; background: var(--ice-bg);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
}
.service-card h3 { font-size: 17px; margin-bottom: 9px; }
.service-card p  { font-size: 14px; line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-family: var(--font-head); font-size: 13px;
  font-weight: 600; color: var(--navy); transition: var(--ease);
}
.card-link:hover { color: var(--orange); gap: 9px; }

/* ============================================================
   WHY ORYZON
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 44px; }
.why-item { display: flex; flex-direction: column; gap: 12px; }
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: var(--r-md); display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin-bottom: 4px;
  box-shadow: 0 4px 18px rgba(26,58,92,0.28);
}
.why-item h3 { font-size: 19px; }
.why-item p  { font-size: 15px; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.lanes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 20px; }
.lane-card {
  background: var(--white); border-radius: var(--r-md); padding: 26px;
  border-left: 4px solid var(--ice); box-shadow: var(--shadow-sm);
}
.lane-card h4 { color: var(--navy-dark); margin-bottom: 12px; font-size: 15px; }
.lane-stop {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--gray-600); margin-bottom: 6px;
}
.lane-stop::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice); flex-shrink: 0;
}
.houston-card {
  background: var(--navy-dark); border-radius: var(--r-md); padding: 26px;
}
.houston-card h4 { color: var(--ice); margin-bottom: 10px; }
.houston-cities { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.85; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,195,247,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-row h2 { color: #fff; }
.cta-row p  { color: rgba(255,255,255,0.72); font-size: 17px; }
.cta-contacts { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.cta-phone-big {
  font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--ice);
}
.cta-email-sm { font-size: 14px; color: rgba(255,255,255,0.55); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 64px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,195,247,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.breadcrumb a { color: var(--ice); transition: var(--ease); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 580px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-list { display: flex; flex-direction: column; gap: 28px; }
.svc-block {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 36px; transition: var(--ease);
}
.svc-block:hover { box-shadow: var(--shadow-md); border-color: var(--ice-light); }
.svc-icon {
  width: 60px; height: 60px; background: var(--ice-bg); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.svc-block h3 { margin-bottom: 8px; }
.svc-block p  { font-size: 15px; }

/* Temperature table */
.temp-table { width: 100%; border-collapse: collapse; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.temp-table th {
  background: var(--navy-dark); color: #fff;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-align: left; padding: 15px 20px;
}
.temp-table td { padding: 15px 20px; font-size: 14px; color: var(--gray-600); border-bottom: 1px solid var(--gray-200); }
.temp-table tr:nth-child(even) td { background: var(--gray-50); }
.temp-table tr:last-child td { border-bottom: none; }
.temp-badge {
  display: inline-block; background: var(--ice-bg); color: var(--navy);
  border-radius: 100px; padding: 4px 11px;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
}

/* Industries grid */
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.industry-chip {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 20px 18px;
  display: flex; align-items: flex-start; gap: 12px; transition: var(--ease);
}
.industry-chip:hover { border-color: var(--ice); box-shadow: var(--shadow-sm); }
.industry-chip-icon { font-size: 22px; flex-shrink: 0; }
.industry-chip-text h4 { font-size: 13px; margin-bottom: 4px; }
.industry-chip-text p  { font-size: 12px; line-height: 1.5; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.founder-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 38px; position: relative; overflow: hidden;
}
.founder-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--ice));
}
.founder-init {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 26px; font-weight: 700; color: #fff;
  margin-bottom: 18px;
}
.founder-title {
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  color: var(--ice); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.founder-bio { font-size: 15px; color: var(--gray-600); margin-bottom: 18px; }
.founder-phone {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--navy);
}

/* Mission quote */
.mission-block {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--r-lg); padding: 64px; text-align: center;
  position: relative; overflow: hidden;
}
.mission-block::before {
  content: '\201C'; position: absolute; top: -30px; left: 30px;
  font-size: 220px; font-family: Georgia, serif;
  color: rgba(79,195,247,0.06); line-height: 1; pointer-events: none;
}
.mission-block blockquote {
  font-family: var(--font-head); font-size: clamp(19px,2.8vw,27px); font-weight: 500;
  color: #fff; line-height: 1.55; position: relative; z-index: 1;
}

/* Credentials */
.cred-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.cred-item {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 18px;
}
.cred-check {
  width: 22px; height: 22px; background: var(--ice-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 12px; flex-shrink: 0; margin-top: 1px;
}
.cred-text strong { display: block; font-size: 13px; color: var(--navy-dark); margin-bottom: 2px; }
.cred-text span   { font-size: 12px; color: var(--gray-400); }

/* Differentiators */
.diff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.diff-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 28px; transition: var(--ease);
}
.diff-card:hover { box-shadow: var(--shadow-md); border-color: var(--ice-light); }
.diff-number {
  font-family: var(--font-head); font-size: 38px; font-weight: 800;
  color: var(--ice-light); line-height: 1; margin-bottom: 10px;
}
.diff-card h4 { margin-bottom: 8px; }
.diff-card p  { font-size: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 46px; box-shadow: var(--shadow-md);
}
.form-card h2 { margin-bottom: 6px; }
.form-card > p { font-size: 15px; margin-bottom: 32px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--font-head); font-size: 12px; font-weight: 600;
  color: var(--gray-800); letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1px solid var(--gray-200); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--white); transition: var(--ease); outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ice); box-shadow: 0 0 0 3px rgba(79,195,247,0.14);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--orange); color: #fff;
  border-radius: var(--r-sm); font-family: var(--font-head); font-size: 16px;
  font-weight: 700; transition: var(--ease); display: flex; align-items: center;
  justify-content: center; gap: 8px; cursor: pointer; border: none;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(232,88,42,0.35); }
.form-note { font-size: 13px; color: var(--gray-400); text-align: center; margin-top: 14px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 26px;
}
.info-card h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ice); margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.info-row:last-child { margin-bottom: 0; }
.info-ico {
  width: 34px; height: 34px; background: var(--ice-bg); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.info-detail { display: flex; flex-direction: column; }
.info-lbl { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.8px; }
.info-val { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--navy-dark); }
.info-val a { color: var(--navy); transition: var(--ease); }
.info-val a:hover { color: var(--orange); }

.dispatch-pill {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--r-md); padding: 22px;
  display: flex; align-items: center; gap: 14px;
}
.dispatch-dot {
  width: 12px; height: 12px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.22); animation: livepulse 2s infinite; flex-shrink: 0;
}
.dispatch-label { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: #fff; }
.dispatch-sub   { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.area-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px;
}
.area-list li {
  font-size: 13px; color: var(--gray-600);
  display: flex; align-items: center; gap: 6px;
}
.area-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--ice); flex-shrink: 0;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); overflow: hidden; transition: var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.blog-body { padding: 26px; }
.blog-tag {
  display: inline-block; background: var(--ice-bg); color: var(--navy);
  border-radius: 100px; padding: 4px 12px;
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 11px;
}
.blog-card h3 { font-size: 17px; margin-bottom: 9px; line-height: 1.3; }
.blog-card p  { font-size: 14px; margin-bottom: 14px; }
.blog-more {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--orange); display: inline-flex; align-items: center; gap: 4px; transition: var(--ease);
}
.blog-more:hover { gap: 8px; }

/* Article */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.article-tag {
  display: inline-block; background: var(--ice-bg); color: var(--navy);
  border-radius: 100px; padding: 5px 14px;
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.article-date { font-size: 14px; color: var(--gray-400); }
.article-body h2 { font-size: 25px; margin: 38px 0 14px; }
.article-body p  { font-size: 17px; line-height: 1.82; margin-bottom: 18px; }
.article-body ol, .article-body ul { margin: 14px 0 22px 24px; }
.article-body li { font-size: 17px; line-height: 1.72; color: var(--gray-600); margin-bottom: 7px; }
.article-body ol { list-style: decimal; }
.article-body ul { list-style: disc; }
.article-body strong { color: var(--navy-dark); font-weight: 600; }
.article-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--r-md); padding: 40px; text-align: center; margin-top: 48px;
}
.article-cta h3 { color: #fff; margin-bottom: 8px; }
.article-cta p  { color: rgba(255,255,255,0.72); margin-bottom: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: #fff; letter-spacing: 4px; text-transform: uppercase; display: block;
}
.footer-brand-sub {
  font-family: var(--font-head); font-size: 8px; font-weight: 400;
  color: var(--ice); letter-spacing: 5px; text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 18px; }
.footer-dot {
  font-size: 12px; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 7px;
}
.footer-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ice); }
.footer-col h5 {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--ice); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--ease);
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact-row { margin-bottom: 13px; }
.footer-contact-lbl { font-size: 11px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.8px; }
.footer-contact-val { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact-val a { color: rgba(255,255,255,0.7); transition: var(--ease); }
.footer-contact-val a:hover { color: var(--ice); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; padding: 22px 0;
}
.footer-copy  { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-creds { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes livepulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes floatdown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { flex-direction: row; flex-wrap: wrap; }
  .info-card { flex: 1; min-width: 220px; }
  .industry-grid  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-menu, .nav-phone-pill { display: none; }
  .nav-burger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: fixed;
    top: 70px; left: 0; right: 0; background: var(--navy-dark);
    padding: 20px 24px; gap: 18px; border-bottom: 1px solid rgba(79,195,247,0.12);
  }
  .nav-menu.open a { font-size: 15px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .why-grid      { grid-template-columns: 1fr; gap: 32px; }
  .lanes-grid    { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .cred-grid     { grid-template-columns: 1fr 1fr; }
  .diff-grid     { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .cta-row       { flex-direction: column; }
  .cta-contacts  { align-items: flex-start; }
  .svc-block     { grid-template-columns: 1fr; }
  .form-row2     { grid-template-columns: 1fr; }
  .form-card     { padding: 28px; }
  .mission-block { padding: 40px 24px; }
  .trust-sep     { display: none; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .area-list     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cards-grid    { grid-template-columns: 1fr; }
  .cred-grid     { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
}
