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

:root {
  /* Brand Colors */
  --primary-dark: #1b2a4e;
  --primary-light: #2c447a;
  --secondary: #00a8cc;
  --secondary-light: #4dd0e1;
  --accent: #008db8;
  
  /* Neutral Colors */
  --bg-color: #f8fafc;
  --surface-color: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  
  /* Typography */
  --font-base: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Metrics */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

/* Typography */
.heading-xl { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 1.5rem; }
.heading-lg { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.heading-md { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 600; margin-bottom: 1rem; }
.text-lead { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: white;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  background: white;
}

.logo-container {
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.logo-container .logo {
  height: 130px;
  max-width: none;
  object-fit: contain;
}

.top-contacts {
  display: flex;
  gap: 40px;
  align-items: center;
}

.contact-block {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 12px;
  color: var(--secondary);
  background: #f0fdfa;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text strong {
  color: var(--primary-dark);
  font-family: var(--font-heading);
  margin-right: 5px;
}

.inline-contact {
  display: flex;
  align-items: center;
}

.contact-text a {
  color: var(--text-muted);
}

.contact-text a:hover {
  color: var(--secondary);
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.whatsapp-icon { background: #25D366; }
.linkedin-icon { background: #0077b5; }
.instagram-icon { background: #E1306C; }

/* Navigation Bar */
.nav-bar {
  background: var(--primary-dark);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: white;
  position: relative;
  padding: 15px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-light);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 160px;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #051024 0%, #0a1b38 100%);
  z-index: -2;
}

.hero-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0,168,204,0.1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: -1;
  animation: float 10s infinite ease-in-out alternate;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content .heading-xl {
  color: #ffffff;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 25px;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-content .heading-xl span {
  color: #00b4d8 !important; /* brighter cyan */
}

.hero-content .heading-xl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #00b4d8;
}

.hero-content .text-lead {
  color: #9ca3af;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-content .btn {
  border-radius: 6px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: none;
}

.hero-content .btn-primary {
  background: #00b4d8;
  color: white;
}

.hero-content .btn-primary:hover {
  background: #0096b4;
}

.hero-content .btn-outline {
  background: rgba(0,0,0,0.2);
  border: 1px solid #00b4d8;
  color: white;
}

.hero-content .btn-outline:hover {
  background: rgba(0, 180, 216, 0.15);
  color: white;
}

.hero-image {
  position: absolute;
  top: 80px;
  bottom: 0;
  right: 0;
  width: 65%;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  mix-blend-mode: lighten;
}

.hero-features {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
  flex-wrap: nowrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-feature-item:not(:last-child)::after {
  content: '';
  display: inline-block;
  height: 30px;
  width: 1px;
  background: rgba(255,255,255,0.2);
  margin-left: 20px;
}

.hero-feature-icon {
  margin-right: 10px;
  color: var(--secondary);
  font-size: 1.5rem;
}

/* Stats Section */
.stats-section {
  background: #020b1c;
  padding: 80px 0;
  color: white;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}

.stats-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: white;
  line-height: 1.2;
}

.stats-intro p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.7;
}

.stats-intro-tag {
  color: #00b4d8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 30px 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #00b4d8;
  background: rgba(0, 180, 216, 0.05);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1;
}

/* ==========================================================================
   WHO WE ARE SECTION (ABOUT)
   ========================================================================== */

.about-section {
  padding: 90px 0 100px;
  background: #F7FAFC;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

/* --- Left Column: Image --- */

.about-image-wrapper {
  width: 100%;
  max-width: 560px;
  height: 420px;
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(7, 26, 47, 0.16);
  position: relative;
  z-index: 2;
}

.about-image-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(0, 194, 232, 0.08);
  filter: blur(50px);
  bottom: -30px;
  right: -30px;
  z-index: 1;
}

/* Floating Info Cards */
.about-float-card {
  position: absolute;
  background: rgba(7, 26, 47, 0.96);
  border: 1px solid rgba(0, 194, 232, 0.24);
  border-radius: 10px;
  padding: 16px 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(7, 26, 47, 0.20);
  z-index: 3;
}

.card-top-left {
  top: -15px;
  left: -15px;
}

.card-bottom-right {
  bottom: -15px;
  right: -15px;
}

.card-val {
  font-size: 21px;
  font-weight: 700;
  color: #FFFFFF;
}

.card-sub {
  font-size: 12px;
  line-height: 1.5;
  color: #B8C7D9;
}

/* --- Right Column: Content --- */

.about-content {
  max-width: 600px;
}

.about-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #00A9CE;
  margin-bottom: 18px;
}

.about-line {
  width: 42px;
  height: 3px;
  background: #00C2E8;
  border-radius: 10px;
  margin-bottom: 16px;
}

.about-heading {
  font-size: clamp(38px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
  color: #071A2F;
}

.highlight-cyan {
  color: #00A9CE;
}

.about-paragraphs p {
  font-size: 16px;
  line-height: 1.72;
  font-weight: 400;
  color: #5F7085;
  margin-bottom: 14px;
  max-width: 590px;
}

/* Corporate Quote */
.about-quote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 15px 18px;
  background: rgba(0, 169, 206, 0.07);
  border-left: 3px solid #00A9CE;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #071A2F;
}

.quote-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #00A9CE;
}

/* Trust Points */
.about-trust-points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.trust-point {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #31445A;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: #00A9CE;
}

/* CTA Button */
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 26px;
  background: #00A9CE;
  color: #FFFFFF;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-arrow {
  width: 18px;
  height: 18px;
}

.about-btn:hover {
  background: #008EAF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 169, 206, 0.22);
  color: #ffffff;
}

/* --- Responsive Layouts --- */

@media (max-width: 991px) {
  .about-container {
    max-width: 720px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-image-wrapper {
    max-width: 680px;
    margin: 0 auto;
  }
  
  .about-content {
    max-width: 680px;
    margin: 0 auto;
  }
  
  .about-heading {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 70px 20px 80px;
  }
  
  .about-container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .about-grid {
    gap: 36px;
  }
  
  .about-image-wrapper {
    height: 300px;
  }
  
  .about-main-img {
    border-radius: 14px;
  }
  
  .about-heading {
    font-size: 31px;
    line-height: 1.15;
  }
  
  .about-paragraphs p {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .card-val {
    font-size: 18px;
  }
  
  .card-sub {
    font-size: 12px;
  }
  
  .about-float-card {
    padding: 12px 14px;
  }
  
  .card-top-left {
    top: -10px;
    left: -10px;
  }
  
  .card-bottom-right {
    bottom: -10px;
    right: -10px;
  }
  
  .about-trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .about-btn {
    width: 100%;
    max-width: 280px;
  }

}


.stat-title {
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
  line-height: 1.4;
}

/* Cards & Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.card {
  background: var(--surface-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

/* Products Custom Styling */
.product-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-img {
  height: 200px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,168,204,0.8), rgba(27,42,78,0.8));
  opacity: 0.8;
}

.product-icon {
  font-size: 3rem;
  color: white;
  z-index: 1;
}

.product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  background: var(--primary-dark);
  color: white;
  align-self: flex-start;
}

.label-nano { background: var(--primary-dark); }
.label-organic { background: #2e7d32; }

/* Contact Form */
.contact-form {
  background: var(--surface-color);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: 1rem;
  transition: var(--transition);
  background: #f8fafc;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
  background: white;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-about p {
  color: #94a3b8;
  margin-top: 15px;
}

.footer-title {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 20px rgba(37,211,102,0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .top-contacts { gap: 15px; }
  .contact-text { display: none; } /* Hide text, keep icons */
}

@media (max-width: 768px) {
  .top-contacts { display: none; } /* Hide completely on mobile */
  
  .nav-links {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background: var(--primary-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1001;
  }
  
  .nav-links.active { left: 0; }
  .mobile-menu-btn { display: block; margin-left: auto; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .stats-grid { grid-template-columns: 1fr; }
  .stats-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content .heading-xl::after { left: 50%; transform: translateX(-50%); }
  .hero-features { justify-content: center; }
}
/* ==========================================================================
   WHAT WE DO SECTION (DIVISIONS)
   ========================================================================== */

.divisions-section {
  padding: 100px 24px 110px;
  background: #071A2F;
  background-image: radial-gradient(circle at 80% 20%, rgba(0, 194, 232, 0.08), transparent 35%);
}

.div-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.div-header {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.div-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00C2E8;
  margin-bottom: 16px;
}

.div-line {
  width: 42px;
  height: 3px;
  background: #00C2E8;
  border-radius: 10px;
  margin: 0 auto 18px;
}

.div-heading {
  font-size: 44px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1px;
  color: #F5F7FA;
  margin-bottom: 20px;
}

.div-intro {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #AEBCCD;
  max-width: 760px;
  margin: 0 auto;
}

/* Division Grid */
.div-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* Division Cards */
.div-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #041221;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}

.card-blue { border: 1px solid #1A3B5C; }
.card-green { border: 1px solid #7FB069; }

.div-card-img-wrap {
  width: 100%;
  height: 250px;
  position: relative;
}

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

.div-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(4, 18, 33, 0), rgba(4, 18, 33, 1));
}

.div-card-content {
  padding: 0 32px 34px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.div-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.label-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.label-icon svg {
  width: 16px;
  height: 16px;
  color: #041221;
}

.bg-blue { background: #00C2E8; }
.bg-green { background: #7FB069; }

.text-blue { color: #00C2E8; }
.text-green { color: #7FB069; }

.div-card-title {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 8px;
  margin-bottom: 14px;
}

.div-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 400;
  color: #94A3B8;
  margin-bottom: 20px;
}

.div-sub-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Tags Grid */
.div-tags-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.div-tag-box {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.tag-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.85;
}

.tag-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.border-blue { border: 1px solid rgba(0, 194, 232, 0.2); }
.border-green { border: 1px solid rgba(127, 176, 105, 0.2); }

.tag-title {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.tag-sub {
  font-size: 9px;
  color: #94A3B8;
  line-height: 1.2;
}

.div-tag-link {
  font-size: 12px;
  font-weight: 600;
}

/* Industries Container */
.div-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ind-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #FFFFFF;
}

.ind-item svg {
  width: 14px;
  height: 14px;
  color: #00C2E8;
}

/* Card CTA */
.div-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-arrow {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

.div-cta:hover {
  gap: 13px;
}

/* Value Strip */
.div-value-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.value-item {
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #F5F7FA;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

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

.value-icon {
  width: 26px;
  height: 26px;
  color: #00C2E8;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .div-tags-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .divisions-section {
    padding: 90px 24px;
  }
  
  .div-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .div-card {
    max-width: 760px;
    margin: 0 auto;
  }
  
  .div-heading {
    font-size: 38px;
  }
  
  .div-value-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .value-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .value-item:nth-child(even) {
    border-right: none;
  }
  
  .value-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .divisions-section {
    padding: 72px 20px 80px;
  }
  
  .div-header {
    margin-bottom: 40px;
  }
  
  .div-heading {
    font-size: 31px;
    line-height: 1.15;
  }
  
  .div-intro {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .div-card {
    border-radius: 14px;
  }
  
  .div-card-img-wrap {
    height: 220px;
  }
  
  .div-card-content {
    padding: 0 22px 28px;
  }
  
  .div-card-title {
    font-size: 24px;
  }
  
  .div-tags-grid {
    grid-template-columns: 1fr;
  }
  
  .div-value-strip {
    grid-template-columns: 1fr;
  }
  
  .value-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .value-item:last-child {
    border-bottom: none;
  }
}



/* ==========================================================================
   ADVANCED MATERIALS SECTION
   ========================================================================== */

/* Utility Classes */
.text-cyan { color: #00A9CE !important; }
.text-navy { color: #071A2F !important; }
.text-navy-muted { color: rgba(7, 26, 47, 0.7) !important; }
.text-white { color: #FFFFFF !important; }
.bg-cyan { background-color: #00A9CE !important; }
.bg-navy { background-color: #071A2F !important; }
.bg-white { background-color: #FFFFFF !important; }
.border-cyan { border-color: #00A9CE !important; }
.border-white { border-color: #FFFFFF !important; }

.adv-materials-section {
    background-color: #F7FAFC;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.am-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.am-header { max-width: 800px; margin: 0 auto 60px; }
.section-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 40px; height: 1px; background: #00A9CE; opacity: 0.5; }

.am-header .heading-lg { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 24px; }
.am-intro p { font-size: 1.05rem; line-height: 1.6; margin-bottom: 15px; }

.am-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.am-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(7, 26, 47, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(7, 26, 47, 0.05);
    background: #FFFFFF;
}

.am-card-img {
    width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

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

.am-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.am-card-content {
    width: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.am-card-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.am-card-sub {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.am-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.am-apps-label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.am-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: auto;
}

.am-app-item {
    font-size: 0.85rem;
    color: #071A2F;
    display: flex;
    align-items: center;
    gap: 6px;
}

.am-app-item::before {
    content: '•';
    color: #00A9CE;
    font-size: 1.4rem;
    line-height: 1;
}

.am-link {
    margin-top: 24px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.am-link:hover { gap: 12px; }

.am-banner-full {
    background-color: #071A2F;
    background-image: radial-gradient(circle at right center, rgba(0, 169, 206, 0.1), transparent 50%);
    padding: 60px 24px;
}

.am-banner-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
}

.am-banner-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(0, 169, 206, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.am-banner-icon svg { width: 40px; height: 40px; }

.am-banner-content {
    /* No flex: 1 so it stays left-aligned next to buttons */
}

.am-banner-content h4::after,
.am-banner-content h4::before {
    display: none !important;
}

.am-banner-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .am-banner-inner { flex-direction: column; text-align: center; gap: 24px; }
    .am-banner-content { width: 100%; }
}

@media (max-width: 768px) {
    .am-grid { grid-template-columns: 1fr; }

/* ==========================================================================
   RESEARCH & INNOVATION SECTION
   ========================================================================== */

.ri-section {
    background-color: #030B14;
    padding: 100px 0;
    color: #FFFFFF;
}

.ri-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.ri-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Image & Floating Cards */
.ri-image-area {
    position: relative;
    border-radius: 16px;
    background: #061325;
}

.ri-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    min-height: 500px;
}

.ri-float-card {
    position: absolute;
    background: rgba(5, 16, 30, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 169, 206, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.ri-float-1 {
    top: 35%;
    left: 20px;
}

.ri-float-2 {
    top: 55%;
    left: 20px;
}

.ri-float-icon svg {
    width: 36px;
    height: 36px;
}

.ri-float-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.ri-float-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Right Content Area */
.ri-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ri-heading {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.ri-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.ri-grid-card {
    background: rgba(5, 16, 30, 0.6);
    border: 1px solid rgba(0, 169, 206, 0.2);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: border 0.3s ease, background 0.3s ease;
}

.ri-grid-card:hover {
    border-color: rgba(0, 169, 206, 0.5);
    background: rgba(0, 169, 206, 0.05);
}

.ri-card-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.ri-card-icon svg {
    width: 40px;
    height: 40px;
}

.ri-grid-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ri-grid-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

/* Timeline */
.ri-timeline-section {
    background: rgba(5, 16, 30, 0.4);
    border: 1px solid rgba(0, 169, 206, 0.15);
    border-radius: 16px;
    padding: 30px 40px;
    margin-bottom: 40px;
}

.ri-timeline-title {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.ri-timeline-track {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ri-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}

.ri-step-top {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}

.ri-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 169, 206, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
    margin: 0 auto;
}

.ri-step-line {
    flex-grow: 1;
    height: 1px;
    border-top: 1px dashed rgba(0, 169, 206, 0.4);
    margin: 0 10px;
    position: relative;
}

.ri-step-line::after {
    content: '>';
    position: absolute;
    right: -4px;
    top: -9px;
    color: rgba(0, 169, 206, 0.4);
    font-size: 14px;
}

.ri-step-icon {
    margin-bottom: 12px;
}

.ri-step-icon svg {
    width: 24px;
    height: 24px;
}

.ri-step h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.ri-step p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

/* Banner */
.ri-banner-section {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: #05101E;
    border: 1px solid rgba(0, 169, 206, 0.2);
}

.ri-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-size: cover;
    background-position: left center;
    opacity: 0.5;
    mask-image: linear-gradient(to right, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 50%, transparent 100%);
}

.ri-banner-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 60%;
}

.ri-banner-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.ri-banner-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.ri-banner-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .ri-top-grid { grid-template-columns: 1fr; }
    .ri-image-area { min-height: 400px; }
    .ri-banner-section { flex-direction: column; text-align: center; gap: 24px; }
    .ri-banner-content { max-width: 100%; }
}

@media (max-width: 992px) {
    .ri-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .ri-timeline-track { flex-direction: column; gap: 30px; }
    .ri-step-top { display: none; } /* Hide timeline arrows on mobile */
    .ri-step { width: 100%; }
    .ri-step-num { margin-bottom: 12px; }
}

@media (max-width: 768px) {
    .ri-cards-grid { grid-template-columns: 1fr; }
    .ri-float-card { position: relative; top: auto; left: auto; width: 100%; border-radius: 0; margin-bottom: 10px; }
    .ri-image-area { display: flex; flex-direction: column; justify-content: flex-end; }
    .ri-main-img { position: absolute; top: 0; left: 0; height: 100%; z-index: -1; }
    .ri-heading { font-size: 2.2rem; }
}
    .am-banner-actions { flex-direction: column; width: 100%; }
    .am-banner-actions .btn { width: 100%; justify-content: center; margin: 0 !important; }
    .am-banner-actions { gap: 10px; }
}

/* ==========================================================================
   RESEARCH & INNOVATION SECTION (LIGHT)
   ========================================================================== */
.ri-light-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ri-light-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.ri-bg-molecule {
    position: absolute;
    top: 0;
    width: 300px;
    height: 100%;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.ri-bg-left {
    left: -50px;
}

.ri-bg-right {
    right: -50px;
    transform: scaleX(-1);
}

.ri-light-header h2 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.ri-light-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.ri-light-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.ri-light-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 169, 206, 0.1);
}

.ri-light-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 169, 206, 0.08);
    border-radius: 50%;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A9CE;
}

.ri-light-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.ri-light-card h4 {
    font-size: 1.15rem;
    color: #071A2F;
    font-weight: 700;
    margin-bottom: 12px;
}

.ri-card-line {
    width: 30px;
    height: 2px;
    background: #00A9CE;
    margin: 0 auto 16px auto;
}

.ri-light-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Eyebrow Lines */
.section-eyebrow-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00A9CE;
    margin-bottom: 20px;
}
.section-eyebrow-lines::before,
.section-eyebrow-lines::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: rgba(0, 169, 206, 0.4);
}

/* Light Banner */
.ri-light-banner {
    background-color: #04101D;
    border-radius: 12px;
    margin-top: 60px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ri-banner-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.ri-banner-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(0, 169, 206, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A9CE;
    flex-shrink: 0;
}

.ri-banner-icon-circle svg {
    width: 36px;
    height: 36px;
}

.ri-banner-text h4 {
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.ri-banner-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn-glow {
    box-shadow: 0 4px 15px rgba(0, 169, 206, 0.3);
}

@media (max-width: 992px) {
    .ri-light-grid { grid-template-columns: repeat(2, 1fr); }
    .ri-banner-content-wrapper { flex-direction: column; text-align: center; }
    .ri-banner-text { text-align: center !important; }
}

@media (max-width: 768px) {
    .ri-light-grid { grid-template-columns: 1fr; }
    .ri-light-header h2 { font-size: 2.2rem; }
}

/* Architecture upgrade */
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}.boomi-label{font-weight:800;letter-spacing:.12em;text-transform:uppercase}.boomi-label small{display:block;font-weight:500;letter-spacing:.08em}

/* ===== SAS GLOBAL 2026 DESIGN SYSTEM / HOME V2 ===== */
:root{--ink:#0b1735;--ink-2:#14244a;--cyan:#00a8cc;--cyan-soft:#dff8fc;--paper:#f6f8fb;--line:#dfe6ef;--green:#557a4b;--green-soft:#eef5e9;--white:#fff;--shadow:0 24px 70px rgba(11,23,53,.12);--max-width:1240px}
body{background:var(--paper);color:#26344f}.skip-link{position:absolute;left:-9999px}.skip-link:focus{left:12px;top:12px;z-index:9999;background:#fff;padding:10px}.header{height:84px;background:rgba(255,255,255,.92);backdrop-filter:blur(16px);border-bottom:1px solid rgba(11,23,53,.08);box-shadow:none}.header.scrolled{box-shadow:0 10px 35px rgba(11,23,53,.08)}.header-inner{height:84px;display:flex;align-items:center;gap:32px}.brand{display:flex;align-items:center;margin-right:auto}.brand img{width:188px;height:66px;object-fit:contain}.desktop-nav{display:flex;align-items:center;gap:30px}.desktop-nav a{font-size:.91rem;font-weight:600;color:#46536c;position:relative;padding:31px 0}.desktop-nav a:hover,.desktop-nav a.active{color:var(--ink)}.desktop-nav a.active:after{content:"";position:absolute;left:0;right:0;bottom:20px;height:2px;background:var(--cyan)}.header-cta{display:inline-flex;align-items:center;gap:14px;background:var(--ink);color:#fff;padding:12px 18px;border-radius:8px;font-weight:650;font-size:.88rem}.header-cta:hover{background:var(--cyan);transform:translateY(-1px)}.mobile-menu-btn,.mobile-nav{display:none}main{padding-top:84px}.home-hero{min-height:720px;display:flex;align-items:center;position:relative;overflow:hidden;background:linear-gradient(120deg,#f8fbff 0%,#eef8fb 48%,#f7fafc 100%)}.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;align-items:center;min-height:720px;position:relative;z-index:2}.hero-copy{padding:74px 0}.eyebrow,.section-kicker{font-size:.72rem;letter-spacing:.17em;font-weight:800;color:#63728b}.eyebrow{display:flex;align-items:center;gap:10px;margin-bottom:24px}.eyebrow span{width:34px;height:2px;background:var(--cyan)}.hero-copy h1{font-size:clamp(3.3rem,5.3vw,5.4rem);line-height:.98;letter-spacing:-.045em;color:var(--ink);margin:0 0 28px}.hero-copy h1 em{font-style:normal;color:var(--cyan)}.hero-copy>p{font-size:1.08rem;line-height:1.8;color:#5c6980;max-width:660px;margin-bottom:34px}.hero-actions{display:flex;gap:12px;flex-wrap:wrap}.btn{border-radius:8px;padding:14px 22px;font-size:.91rem}.btn-primary{background:var(--ink);box-shadow:none}.btn-primary:hover{background:var(--cyan)}.btn-ghost{background:#fff;border:1px solid #d5deea;color:var(--ink)}.hero-proof{display:flex;gap:34px;margin-top:48px;padding-top:26px;border-top:1px solid #dbe4ed;max-width:650px}.hero-proof>div{display:flex;gap:10px;align-items:center}.hero-proof strong{font:700 1.65rem var(--font-heading);color:var(--ink)}.hero-proof span{font-size:.72rem;line-height:1.35;color:#6c7890}.hero-visual{height:610px;position:relative;display:flex;align-items:center;justify-content:center}.hero-visual>img{width:min(590px,48vw);position:relative;z-index:2;filter:drop-shadow(0 35px 40px rgba(0,77,116,.18));animation:floatHero 7s ease-in-out infinite}.visual-ring{position:absolute;border:1px solid rgba(0,168,204,.22);border-radius:50%}.ring-a{width:510px;height:510px}.ring-b{width:390px;height:390px;border-style:dashed}.floating-note{position:absolute;z-index:3;background:rgba(255,255,255,.9);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.8);box-shadow:0 15px 40px rgba(11,23,53,.12);border-radius:12px;padding:13px 16px;display:flex;flex-direction:column}.floating-note b{color:var(--ink);font:700 1rem var(--font-heading)}.floating-note span{font-size:.68rem;color:#748198}.note-one{left:0;top:26%}.note-two{right:0;bottom:23%}.hero-orb{position:absolute;border-radius:50%;filter:blur(2px)}.orb-one{width:420px;height:420px;background:rgba(0,168,204,.08);right:-100px;top:0}.orb-two{width:250px;height:250px;background:rgba(33,72,137,.05);left:40%;bottom:-80px}@keyframes floatHero{50%{transform:translateY(-14px) rotate(1deg)}}.trust-strip{background:var(--ink);color:#fff}.trust-row{min-height:72px;display:flex;align-items:center;justify-content:space-between;gap:18px;white-space:nowrap;overflow:hidden}.trust-row span{font-size:.64rem;letter-spacing:.18em;color:#7e8ba7;font-weight:800}.trust-row b{font-size:.78rem;font-weight:550;color:#dfe7f4}.trust-row i{width:4px;height:4px;border-radius:50%;background:var(--cyan)}.home-section{padding:105px 0}.split-intro{display:grid;grid-template-columns:1.1fr .9fr;gap:90px;align-items:end}.section-kicker{margin-bottom:18px}.split-intro h2,.section-head h2{font-size:clamp(2.3rem,4vw,3.7rem);line-height:1.08;letter-spacing:-.035em;margin:0;color:var(--ink)}.split-intro h2 span,.section-head h2 span{color:var(--cyan)}.split-intro p,.section-head>p{font-size:1rem;line-height:1.85;color:#647189}.text-link{display:inline-flex;gap:10px;align-items:center;margin-top:22px;color:var(--ink);font-weight:700;font-size:.9rem}.text-link:hover{color:var(--cyan)}.divisions-new{background:#fff}.section-head{display:grid;grid-template-columns:1.2fr .8fr;gap:80px;align-items:end;margin-bottom:50px}.section-head>p{margin:0}.section-head.compact{align-items:center}.division-grid-new{display:grid;grid-template-columns:1fr 1fr;gap:24px}.division-panel{border-radius:18px;overflow:hidden;position:relative;min-height:610px;background:var(--ink);opacity:0;transform:translateY(18px);transition:.6s}.division-panel.in-view{opacity:1;transform:none}.panel-image{height:285px;overflow:hidden}.panel-image img{width:100%;height:100%;object-fit:cover;transition:transform .7s}.division-panel:hover .panel-image img{transform:scale(1.035)}.panel-content{padding:34px 36px;color:#fff}.panel-index{font-size:.65rem;letter-spacing:.16em;font-weight:800;color:#7edff0}.panel-content h3{font-size:2rem;color:#fff;margin:14px 0 15px}.panel-content p{color:#bac6d8;line-height:1.7;font-size:.9rem}.chip-row{display:flex;gap:7px;flex-wrap:wrap;margin:22px 0}.chip-row span{border:1px solid rgba(255,255,255,.17);border-radius:99px;padding:6px 10px;font-size:.68rem;color:#d9e3f1}.panel-content>a{display:flex;justify-content:space-between;color:#fff;border-top:1px solid rgba(255,255,255,.14);padding-top:20px;font-weight:700;font-size:.84rem}.organic-panel{background:#28402f}.organic-panel .panel-index{color:#b9d6a6}.boomi-label{margin:13px 0 17px}.boomi-label strong{display:block;font:700 2rem var(--font-heading);letter-spacing:.07em;color:#fff}.boomi-label small{display:block;color:#c6d8bc;letter-spacing:.13em;font-size:.62rem;margin-top:2px}.products-showcase{background:#f3f6f9}.product-grid-new{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.product-tile{background:#fff;border:1px solid #e3e9f0;border-radius:14px;overflow:hidden;opacity:0;transform:translateY(18px);transition:.55s}.product-tile.in-view{opacity:1;transform:none}.product-tile:hover{transform:translateY(-5px);box-shadow:var(--shadow)}.product-img{height:230px;position:relative;overflow:hidden;background:#eaf1f6}.product-img img{width:100%;height:100%;object-fit:cover;transition:.5s}.product-tile:hover img{transform:scale(1.04)}.product-img>span{position:absolute;left:14px;top:14px;background:rgba(11,23,53,.9);color:#fff;padding:6px 9px;border-radius:6px;font-size:.67rem;font-weight:800}.product-info{padding:20px}.product-info h3{font-size:1.08rem;margin:0 0 7px}.product-info p{font-size:.73rem;color:#758198;margin-bottom:17px}.product-info a{font-size:.78rem;font-weight:800;color:var(--cyan);display:flex;justify-content:space-between}.innovation-section{background:var(--ink);padding:0}.innovation-grid{display:grid;grid-template-columns:1fr 1fr;min-height:690px}.innovation-visual{position:relative;margin-left:calc((1240px - 100vw)/2);overflow:hidden}.innovation-visual img{width:100%;height:100%;object-fit:cover}.innovation-visual:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(11,23,53,.08),rgba(11,23,53,.35))}.innovation-badge{position:absolute;z-index:2;right:25px;bottom:25px;background:#fff;padding:17px 20px;border-radius:10px;display:flex;flex-direction:column}.innovation-badge strong{color:var(--ink)}.innovation-badge span{font-size:.7rem;color:#748096}.innovation-copy{padding:85px 0 80px 70px;color:#fff}.section-kicker.light{color:#73d9e9}.innovation-copy h2{font-size:clamp(2.3rem,3.8vw,3.7rem);color:#fff;line-height:1.08;letter-spacing:-.035em;margin-bottom:25px}.innovation-copy h2 span{color:#67d6e7}.innovation-copy>p{color:#aebbd0;line-height:1.8}.innovation-list{margin:30px 0}.innovation-list>div{display:grid;grid-template-columns:40px 1fr;gap:14px;padding:17px 0;border-top:1px solid rgba(255,255,255,.1)}.innovation-list b{color:#61d4e5;font-size:.7rem}.innovation-list span{color:#9facbf;font-size:.8rem}.innovation-list strong{display:block;color:#fff;font-size:.92rem;margin-bottom:3px}.btn-light{background:#fff;color:var(--ink)}.quality-section{background:#fff}.quality-card{background:linear-gradient(125deg,#eff9fb,#f6f8fb);border:1px solid #dce9ed;border-radius:18px;padding:55px;display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;opacity:0;transform:translateY(18px);transition:.6s}.quality-card.in-view{opacity:1;transform:none}.quality-card h2{font-size:2.5rem;margin:0 0 16px}.quality-card p{color:#65728a;line-height:1.75}.quality-points{display:grid;grid-template-columns:1fr 1fr;gap:12px}.quality-points span{background:#fff;border:1px solid #dfe7ee;border-radius:9px;padding:16px;font-size:.8rem;font-weight:700;color:var(--ink)}.quality-points span:before{content:"✓";color:var(--cyan);margin-right:9px}.home-cta{background:linear-gradient(115deg,#00a8cc,#087a9d);color:#fff;padding:80px 0}.cta-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:90px;align-items:center}.cta-inner>div>span{font-size:.66rem;letter-spacing:.17em;font-weight:800}.cta-inner h2{font-size:clamp(2.3rem,4vw,3.6rem);color:#fff;line-height:1.08;margin:13px 0 0}.cta-inner p{line-height:1.7;color:#e0f7fb}.whatsapp-link{color:#fff;font-weight:700;font-size:.82rem;margin-left:16px}.footer-new{background:#081329;color:#9eabc0;padding:70px 0 0}.footer-top{display:grid;grid-template-columns:1.35fr .7fr .9fr 1.15fr;gap:55px;padding-bottom:50px}.footer-brand img{width:200px;height:auto;object-fit:contain;background:#ffffff;border-radius:8px;padding:12px 18px}.footer-brand p{max-width:330px;line-height:1.7;font-size:.83rem;margin:18px 0}.footer-new h3{color:#fff;font-size:.9rem;margin-bottom:18px}.footer-new a{display:block;color:#9eabc0;font-size:.8rem;margin:10px 0}.footer-new a:hover{color:#5fd4e7}.footer-new p{font-size:.8rem;line-height:1.7}.boomi-mini{border-left:2px solid #7ea86f;padding-left:12px}.boomi-mini strong{display:block;color:#dcebd6;letter-spacing:.08em}.boomi-mini span{font-size:.6rem;letter-spacing:.08em}.footer-bottom{border-top:1px solid rgba(255,255,255,.09);min-height:70px;display:flex;justify-content:space-between;align-items:center;font-size:.7rem}
@media(max-width:1024px){.desktop-nav{gap:18px}.header-cta{display:none}.hero-grid{grid-template-columns:1.05fr .95fr}.hero-copy h1{font-size:3.8rem}.hero-visual{height:540px}.floating-note{display:none}.product-grid-new{grid-template-columns:1fr 1fr}.innovation-visual{margin-left:-20px}.innovation-copy{padding-left:45px}.footer-top{grid-template-columns:1.2fr 1fr 1fr}.footer-top>div:last-child{grid-column:2/4}.trust-row b:nth-of-type(n+5),.trust-row i:nth-of-type(n+5){display:none}}
@media(max-width:768px){.header{height:72px}.header-inner{height:72px}.brand img{width:160px;height:58px}.desktop-nav{display:none}.mobile-menu-btn{margin-left:auto;display:flex;width:42px;height:42px;border:0;background:transparent;flex-direction:column;justify-content:center;gap:5px;padding:9px}.mobile-menu-btn span{height:2px;width:23px;background:var(--ink);transition:.3s}.mobile-menu-btn.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}.mobile-menu-btn.active span:nth-child(2){opacity:0}.mobile-menu-btn.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}.mobile-nav{display:flex;position:fixed;top:72px;left:0;right:0;background:#fff;flex-direction:column;padding:16px 20px 25px;border-top:1px solid #e5eaf0;box-shadow:0 20px 45px rgba(11,23,53,.12);transform:translateY(-120%);opacity:0;pointer-events:none;transition:.35s}.mobile-nav.active{transform:none;opacity:1;pointer-events:auto}.mobile-nav a{padding:13px 4px;border-bottom:1px solid #edf0f4;font-weight:650;color:var(--ink)}.mobile-nav .mobile-call{background:var(--ink);color:#fff;text-align:center;border-radius:7px;margin-top:10px;border:0}main{padding-top:72px}.home-hero{min-height:auto}.hero-grid{grid-template-columns:1fr}.hero-copy{padding:62px 0 25px}.hero-copy h1{font-size:clamp(2.75rem,11vw,4.2rem)}.hero-copy>p{font-size:.98rem}.hero-proof{gap:18px}.hero-proof>div{display:block}.hero-proof span{display:block;margin-top:4px}.hero-visual{height:400px}.hero-visual>img{width:min(480px,90vw)}.ring-a{width:370px;height:370px}.ring-b{width:290px;height:290px}.trust-row{justify-content:flex-start;overflow:auto}.trust-row b:nth-of-type(n+4),.trust-row i:nth-of-type(n+4){display:none}.home-section{padding:75px 0}.split-intro,.section-head,.cta-inner{grid-template-columns:1fr;gap:28px}.division-grid-new{grid-template-columns:1fr}.division-panel{min-height:auto}.panel-image{height:250px}.innovation-grid{grid-template-columns:1fr}.innovation-visual{margin:0 -20px;height:420px}.innovation-copy{padding:65px 0}.quality-card{grid-template-columns:1fr;gap:30px;padding:34px}.footer-top{grid-template-columns:1fr 1fr}.footer-top>div:last-child{grid-column:auto}.footer-brand{grid-column:1/-1}.footer-bottom{gap:15px;align-items:flex-start;flex-direction:column;justify-content:center}.home-cta{padding:65px 0}}
@media(max-width:520px){.container{padding-left:18px;padding-right:18px}.eyebrow{font-size:.62rem}.hero-copy{padding-top:48px}.hero-copy h1{font-size:2.75rem}.hero-actions{flex-direction:column}.hero-actions .btn{width:100%}.hero-proof{gap:12px;justify-content:space-between}.hero-proof strong{font-size:1.35rem}.hero-proof span{font-size:.61rem}.hero-visual{height:330px}.ring-a{width:300px;height:300px}.ring-b{width:230px;height:230px}.split-intro h2,.section-head h2{font-size:2.25rem}.section-head.compact .text-link{margin-top:0}.panel-content{padding:28px 24px}.panel-content h3,.boomi-label strong{font-size:1.65rem}.product-grid-new{grid-template-columns:1fr}.product-img{height:245px}.innovation-visual{height:340px}.innovation-copy h2{font-size:2.3rem}.quality-card{padding:27px 22px}.quality-card h2{font-size:2rem}.quality-points{grid-template-columns:1fr}.cta-inner h2{font-size:2.35rem}.cta-inner .btn{width:100%;margin-bottom:12px}.whatsapp-link{display:block;margin:4px 0 0;text-align:center}.footer-top{grid-template-columns:1fr;gap:30px}.footer-brand{grid-column:auto}}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;animation:none!important;transition-duration:.01ms!important}}/* ===== Products Page V2 ===== */.products-page{padding-top:92px}.products-hero{padding:88px 0 72px;background:linear-gradient(135deg,rgba(7,27,43,0.85) 0%,rgba(13,48,69,0.9) 60%,rgba(18,61,67,0.85) 100%),url('../images/sasglobal_hero_fullscreen.webp') center/cover no-repeat;color:#fff;overflow:hidden}.products-hero-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:64px;align-items:center}.eyebrow{display:inline-block;font-size:.76rem;letter-spacing:.14em;text-transform:uppercase;font-weight:800;color:#35c1d4;margin-bottom:14px}.products-hero h1{font-size:clamp(2.7rem,5vw,5.2rem);line-height:1.02;letter-spacing:-.045em;margin:0 0 24px;color:#fff}.products-hero h1 span{color:#25d366}.products-hero p{font-size:1.08rem;line-height:1.75;color:#c8d8df;max-width:720px}.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}.division-stack{display:grid;gap:18px}.division-mini{padding:28px;border:1px solid rgba(255,255,255,.14);border-radius:20px;background:rgba(255,255,255,.07);backdrop-filter:blur(10px);display:flex;align-items:center;gap:24px}.div-img img{width:96px;height:96px;object-fit:cover;border-radius:12px;box-shadow:0 8px 20px rgba(0,0,0,0.15)}.division-mini small{display:block;letter-spacing:.14em;font-weight:800;margin-bottom:8px}.division-mini strong{display:block;font-size:1.3rem;line-height:1.3}.division-mini p{font-size:.9rem;margin:9px 0 0}.division-mini.organic{background:rgba(37,211,102,.22)}.division-mini.organic small{color:#25d366}.product-anchor{position:sticky;top:80px;z-index:20;background:#fff;border-bottom:1px solid #e7edf0;box-shadow:0 8px 24px rgba(8,31,45,.05)}.anchor-row{display:flex;gap:28px;overflow:auto}.anchor-row a{padding:17px 0;white-space:nowrap;font-weight:700;color:#37515e;font-size:.9rem}.section-head.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:end;margin-bottom:42px}.section-head h2{font-size:clamp(2rem,3.5vw,3.5rem);line-height:1.08;letter-spacing:-.035em;margin:0}.section-head p{color:#60727b;line-height:1.75;margin:0}.product-division{background:#f5f8fa}.product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.premium-product-card{display:grid;grid-template-columns:42% 58%;background:#fff;border:1px solid #e1e9ed;border-radius:20px;overflow:hidden;min-height:360px;transition:.25s}.premium-product-card:hover{transform:translateY(-4px);box-shadow:0 18px 50px rgba(9,39,54,.1)}.product-visual{min-height:100%;background:linear-gradient(145deg,#dceaf0,#f3f8fa);display:flex;align-items:center;justify-content:center}.product-visual img{width:100%;height:100%;object-fit:cover}.product-visual span{font-size:2.4rem;font-weight:900;color:#174e65}.product-body{padding:30px;display:flex;flex-direction:column}.product-code{font-size:.72rem;font-weight:900;letter-spacing:.14em;color:#1689a2;margin-bottom:10px}.product-body h3{font-size:1.45rem;margin:0 0 12px}.product-body p{font-size:.92rem;line-height:1.65;color:#61737c;flex:1}.application-line{border-top:1px solid #e5ecef;padding-top:16px;margin-top:18px}.application-line small{display:block;font-size:.65rem;letter-spacing:.1em;color:#8a9aa1;font-weight:800}.application-line strong{font-size:.78rem;color:#2f4c59}.text-link,.organic-card a{display:inline-block;margin-top:18px;font-weight:800;font-size:.84rem;color:#0b7e99}.more-solutions{background:#0a2737;color:#fff}.section-head.centered{text-align:center;max-width:780px;margin:0 auto 40px}.section-head.centered p{color:#bdd0d8;margin-top:14px}.capabilities-split{display:grid;grid-template-columns:1fr 1.2fr;gap:60px;align-items:center}.capabilities-split .section-head{text-align:left;max-width:none;margin:0}.capability-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.capability-grid.new-grid{grid-template-columns:repeat(2,1fr);gap:20px}.capability-grid>div{padding:26px;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.05)}.capability-grid.new-grid>div{padding:30px;min-height:220px;display:flex;flex-direction:column;justify-content:flex-end;border:1px solid rgba(255,255,255,.05);position:relative;overflow:hidden}.capability-grid.new-grid>div::before{content:'';position:absolute;inset:0;background:linear-gradient(to top, rgba(8,31,45,0.9), transparent);z-index:0;pointer-events:none}.capability-grid.new-grid strong,.capability-grid.new-grid p{position:relative;z-index:1;text-shadow:0 2px 5px rgba(0,0,0,.6)}.capability-grid strong{font-size:1.05rem}.capability-grid.new-grid strong{font-size:1.15rem;color:#fff;margin-bottom:8px}.capability-grid p{font-size:.86rem;line-height:1.6;color:#b9cbd3;margin-bottom:0}.capability-grid.new-grid p{color:#d0e1e8}.boomi-section{background:#f0fbf5}.boomi-brand{text-align:center;margin-bottom:46px}.boomi-wordmark{font-family:Georgia,serif;font-size:clamp(2rem,4vw,3.5rem);font-weight:700;letter-spacing:.06em;color:#0b5c3e}.boomi-wordmark span{color:#0b5c3e}.boomi-tag{font-size:.75rem;letter-spacing:.22em;text-transform:uppercase;color:#25d366;margin-top:8px}.organic-eye{color:#128c7e}.organic-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}.organic-card{background:#fff;border-radius:18px;border:1px solid #e1f0e8;transition:.25s;overflow:hidden}.organic-card:hover{transform:translateY(-4px);box-shadow:0 18px 45px rgba(18,140,126,.15)}.organic-img{height:180px;background:#e8f9f2}.organic-img img{width:100%;height:100%;object-fit:cover}.organic-body{padding:28px}.organic-label{font-size:.65rem;letter-spacing:.13em;font-weight:900;color:#25d366}.organic-card h3{font-size:1.25rem;margin:10px 0;color:#0b5c3e}.organic-card p{font-size:.9rem;line-height:1.65;color:#4a6358}.organic-card a{color:#128c7e;font-weight:bold}.product-cta{background:#fff}.cta-panel{padding:60px;border-radius:24px;background:linear-gradient(135deg,#128c7e,#25d366);color:#fff;display:grid;grid-template-columns:1fr auto;gap:40px;align-items:center;box-shadow:0 20px 40px rgba(37,211,102,0.15)}.cta-panel h2{font-size:clamp(2rem,3vw,3rem);color:#fff;margin:0 0 12px}.cta-panel p{color:#e8f9f2;max-width:720px;margin:0}.cta-actions{display:flex;gap:16px;flex-wrap:wrap}.btn-light{background:rgba(255,255,255,0.15);color:#fff;border:1px solid rgba(255,255,255,0.3)}.btn-light:hover{background:rgba(255,255,255,0.25)}.btn-whatsapp{background:#fff;color:#128c7e;padding:18px 45px;font-size:1.15rem;font-weight:800;border-radius:16px;box-shadow:0 12px 30px rgba(18,140,126,0.25);transition:transform 0.3s,box-shadow 0.3s}.btn-whatsapp:hover{transform:translateY(-5px);box-shadow:0 20px 40px rgba(18,140,126,0.35)}
@media(max-width:1024px){.products-hero-grid{grid-template-columns:1fr;gap:36px}.division-stack{grid-template-columns:1fr 1fr}.product-grid{grid-template-columns:1fr}.capability-grid,.organic-grid{grid-template-columns:repeat(2,1fr)}.capabilities-split{grid-template-columns:1fr}.cta-panel{grid-template-columns:1fr}.section-head.split{gap:32px}}
@media(max-width:767px){.products-page{padding-top:72px}.products-hero{padding:58px 0 48px}.products-hero h1{font-size:2.65rem}.division-stack,.section-head.split{grid-template-columns:1fr}.product-anchor{top:68px}.anchor-row{gap:20px}.product-grid{gap:18px}.premium-product-card{grid-template-columns:1fr}.product-visual{height:220px}.product-body{padding:24px}.capability-grid,.organic-grid{grid-template-columns:1fr}.section-head.split{margin-bottom:30px}.cta-panel{padding:32px 24px}.cta-actions,.hero-actions{flex-direction:column}.cta-actions .btn,.hero-actions .btn{text-align:center;width:100%}}
@media(max-width:420px){.products-hero h1{font-size:2.25rem}.division-mini{padding:22px}.boomi-wordmark{font-size:1.9rem}.anchor-row a{font-size:.82rem}.product-body h3{font-size:1.3rem}}
/* ===== About Page V2 ===== */
.about-page{padding-top:110px}.about-hero{padding:95px 0;background:linear-gradient(135deg,#f8fbfd,#eaf5f7)}.about-hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:80px;align-items:center}.about-kicker{font-size:.72rem;letter-spacing:.18em;font-weight:900;color:#138aa2}.about-hero h1{font-size:clamp(3rem,5.2vw,5.2rem);line-height:1.01;letter-spacing:-.045em;color:var(--ink);margin:16px 0 25px}.about-hero h1 span,.about-story h2 span,.research-grid h2 span,.quality-about h2 span{color:var(--cyan)}.about-hero p{font-size:1.05rem;line-height:1.8;color:#607087;max-width:720px}.about-hero-card{padding:48px;background:linear-gradient(rgba(4,13,26,0.3),rgba(4,13,26,0.85)),url('../images/philosophy_bg3.webp') center/cover;color:#fff;border-radius:24px;box-shadow:var(--shadow)}.about-hero-card small{letter-spacing:.16em;color:#69d5e7;font-weight:800}.about-hero-card strong{display:block;font:700 clamp(2rem,3vw,3rem)/1.12 var(--font-heading);margin:22px 0}.about-hero-card p{color:#b8c6da;margin:0}.about-nav{position:sticky;top:110px;z-index:15;background:#fff;border-bottom:1px solid var(--line)}.about-nav-row{display:flex;gap:32px;overflow:auto}.about-nav a{padding:17px 0;white-space:nowrap;font-size:.86rem;font-weight:750;color:#53627a}.about-story-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:90px}.about-story h2,.research-grid h2,.quality-about h2{font-size:clamp(2.3rem,4vw,3.7rem);line-height:1.08;letter-spacing:-.035em;color:var(--ink)}.story-copy p{font-size:1rem;line-height:1.85;color:#607087}.story-copy blockquote{margin:30px 0 0;padding:22px 26px;border-left:3px solid var(--cyan);background:#fff;font:700 1.25rem var(--font-heading);color:var(--ink)}.founder-section{padding:105px 0;background:var(--ink);color:#fff}.founder-grid{display:grid;grid-template-columns:.75fr 1.25fr;gap:80px;align-items:start}.founder-panel{padding:42px;border:1px solid rgba(255,255,255,.12);border-radius:22px;background:rgba(255,255,255,.05)}.founder-panel>span{font-size:.68rem;letter-spacing:.15em;color:#6dd8e8;font-weight:800}.founder-panel h2{font-size:3rem;color:#fff;margin:18px 0}.founder-panel p,.founder-content p{color:#b8c5d7;line-height:1.8}.founder-stat{display:flex;align-items:center;gap:16px;margin-top:30px;padding-top:25px;border-top:1px solid rgba(255,255,255,.12)}.founder-stat strong{font-size:2.7rem;color:#6dd8e8}.founder-stat small{max-width:120px}.founder-content .section-kicker{color:#6dd8e8}.founder-content h2{font-size:clamp(2.2rem,3.5vw,3.4rem);color:#fff;line-height:1.1}.experience-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:30px}.experience-grid span{padding:14px 16px;border:1px solid rgba(255,255,255,.12);border-radius:8px;color:#dbe5ef;font-size:.84rem}.vision-section{background:#f7f8f4}.vision-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px}.vision-card{background:#fff;border:1px solid #e4e8df;border-radius:20px;overflow:hidden;transition:transform .4s cubic-bezier(.16,1,.3,1),box-shadow .4s cubic-bezier(.16,1,.3,1);display:flex;flex-direction:column}.vision-card:hover{transform:translateY(-8px);box-shadow:0 20px 40px rgba(4,13,26,.08)}.vision-img-wrapper{width:100%;height:280px;overflow:hidden}.vision-img-wrapper img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.16,1,.3,1)}.vision-card:hover .vision-img-wrapper img{transform:scale(1.05)}.vision-card-content{padding:45px;flex:1;display:flex;flex-direction:column}.vision-card-content small{letter-spacing:.14em;font-weight:850;color:#138aa2}.vision-card-content h3{font-size:1.7rem;color:var(--ink);margin:18px 0}.vision-card-content p{line-height:1.75;color:#66746f;margin-bottom:0}.research-section{padding:105px 0;background:#fff}.research-grid{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:center}.research-grid p{line-height:1.85;color:#627188}.creative-stepper{position:relative;padding-left:30px;display:flex;flex-direction:column;gap:35px}.creative-stepper::before{content:"";position:absolute;left:14px;top:10px;bottom:10px;width:2px;background:var(--line);z-index:1}.step-item{position:relative;display:flex;align-items:center;gap:30px;z-index:2;cursor:default;padding:8px 0}.step-marker{width:30px;height:30px;background:#fff;border:2px solid #e1e9ef;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.65rem;font-weight:800;color:#8596ac;position:absolute;left:-30px;transition:all .3s ease}.step-content{font-weight:750;color:#5a687c;font-size:.95rem;transition:all .3s cubic-bezier(.16,1,.3,1)}.step-item:hover .step-marker{border-color:var(--cyan);background:var(--cyan);color:#fff;box-shadow:0 0 15px rgba(0,168,204,.4)}.step-item:hover .step-content{color:var(--ink);transform:translateX(10px)}.quality-about{background:#eef3f6}.quality-about-head{display:grid;grid-template-columns:1fr .8fr;gap:70px;align-items:end;margin-bottom:45px}.quality-about-head p{line-height:1.8;color:#647389}.quality-about-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.quality-about-grid article{padding:28px;background:#fff;border:1px solid #dde6eb;border-radius:16px}.quality-about-grid strong{font:700 1.12rem var(--font-heading);color:var(--ink)}.quality-about-grid p{font-size:.88rem;line-height:1.65;color:#69778b;margin-bottom:0}.about-cta{padding:85px 0;background:#fff}
@media(max-width:1024px){.about-hero-grid,.founder-grid,.research-grid{grid-template-columns:1fr;gap:45px}.about-story-grid{gap:50px}.quality-about-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){.about-page{padding-top:72px}.about-hero{padding:60px 0}.about-hero-grid,.about-story-grid,.vision-grid,.quality-about-head{grid-template-columns:1fr;gap:30px}.about-hero-card{padding:32px}.about-nav{top:72px}.founder-section,.research-section{padding:75px 0}.founder-panel h2{font-size:2.4rem}.experience-grid{grid-template-columns:1fr}.quality-about-grid{grid-template-columns:1fr}.vision-card-content{padding:30px}.about-cta{padding:65px 0}}
@media(max-width:420px){.about-hero h1{font-size:2.55rem}.about-hero-card{padding:26px}.about-nav-row{gap:22px}.founder-panel{padding:28px 24px}}


/* =========================================================
   PHASE 4 — INDUSTRIES & SOLUTIONS PAGE
   Scoped styles: .solutions-page
   ========================================================= */
.solutions-page{background:#fff;color:#172033}
.solutions-page h1,.solutions-page h2,.solutions-page h3{letter-spacing:-.035em}
.sol-hero{padding:170px 0 88px;background:radial-gradient(circle at 78% 18%,rgba(37,99,235,.18),transparent 28%),linear-gradient(135deg,#071426 0%,#0d2440 56%,#123458 100%);color:#fff;overflow:hidden}
.sol-hero-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(340px,.75fr);gap:72px;align-items:center}
.sol-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:.78rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#8ec5ff;margin-bottom:18px}
.sol-eyebrow:before{content:"";width:34px;height:2px;background:currentColor}
.sol-eyebrow.dark{color:#1767b7}
.sol-hero-copy h1{font-size:clamp(2.7rem,5.2vw,5.2rem);line-height:1.02;max-width:900px;margin:0 0 24px;color:#fff}
.sol-hero-copy>p{font-size:1.12rem;line-height:1.8;color:#c9d8e8;max-width:760px;margin:0 0 32px}
.sol-hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.sol-btn-light{border:1px solid rgba(255,255,255,.28);color:#fff;background:rgba(255,255,255,.06)}
.sol-btn-light:hover{background:#fff;color:#0d2440}
.sol-proof{display:flex;gap:22px;flex-wrap:wrap;margin-top:32px;color:#aebfd1;font-size:.85rem}
.sol-proof span{display:flex;align-items:center;gap:8px}
.sol-proof span:before{content:"✓";color:#72d6a0;font-weight:900}
.sol-hero-panel{background:rgba(255,255,255,.075);border:1px solid rgba(255,255,255,.14);backdrop-filter:blur(12px);padding:34px;border-radius:24px;box-shadow:0 24px 80px rgba(0,0,0,.24)}
.sol-panel-kicker{font-size:.72rem;text-transform:uppercase;letter-spacing:.15em;color:#8ec5ff;font-weight:800}
.sol-hero-panel h2{font-size:1.65rem;line-height:1.25;margin:10px 0 24px;color:#fff}
.sol-step{display:grid;grid-template-columns:42px 1fr;gap:14px;padding:16px 0;border-top:1px solid rgba(255,255,255,.12)}
.sol-step b{color:#8ec5ff;font-size:.8rem}
.sol-step strong{display:block;color:#fff;margin-bottom:4px}
.sol-step small{display:block;color:#afc1d2;line-height:1.5}
.sol-intro{padding:76px 0;border-bottom:1px solid #e8edf3}
.sol-intro-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:end}
.sol-intro h2,.sol-section-head h2,.sol-rd h2,.sol-collab h2{font-size:clamp(2rem,3.5vw,3.5rem);line-height:1.08;margin:0}
.sol-intro p{font-size:1.08rem;line-height:1.85;color:#5c6878;margin:0}
.sol-industries{padding:100px 0;background:#f6f8fb}
.sol-section-head{display:grid;grid-template-columns:1.1fr .7fr;gap:60px;align-items:end;margin-bottom:48px}
.sol-section-head p{color:#657184;line-height:1.75;margin:0}
.sol-industry-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.sol-industry-card{position:relative;background:#fff;border:1px solid #e4eaf1;border-radius:18px;padding:28px 24px 24px;min-height:360px;display:flex;flex-direction:column;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.sol-industry-card:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(16,40,72,.1);border-color:#bdd7f0}
.sol-num{font-size:.72rem;font-weight:900;color:#1e70bd;letter-spacing:.1em}
.sol-industry-card h3{font-size:1.35rem;margin:18px 0 10px;color:#13263c}
.sol-industry-card p{font-size:.92rem;line-height:1.65;color:#687587;margin:0 0 16px}
.sol-industry-card ul{padding:0;margin:0 0 22px;list-style:none}
.sol-industry-card li{font-size:.82rem;color:#425064;padding:6px 0 6px 16px;position:relative}
.sol-industry-card li:before{content:"";position:absolute;left:0;top:12px;width:6px;height:6px;border-radius:50%;background:#2f83cf}
.sol-industry-card a{margin-top:auto;color:#1767b7;font-weight:800;font-size:.84rem;text-decoration:none;display:flex;justify-content:space-between;gap:10px}
.sol-rd{padding:100px 0;background:#0b1e34;color:#fff}
.sol-rd-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:80px;align-items:center}
.sol-rd h2{color:#fff;margin-bottom:22px}
.sol-rd-copy p{color:#b8c8d8;line-height:1.8;margin-bottom:24px}
.sol-text-link{color:#8ec5ff;text-decoration:none;font-weight:800}
.sol-focus-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.sol-focus-grid div{display:flex;align-items:center;gap:14px;padding:20px;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:rgba(255,255,255,.045)}
.sol-focus-grid b{font-size:.72rem;color:#77baff}
.sol-focus-grid span{font-size:.9rem;font-weight:700;color:#e7eff7}
.sol-collab{padding:100px 0;background:#fff}
.sol-collab-grid{display:grid;grid-template-columns:1fr .72fr;gap:80px;align-items:center}
.sol-collab p{color:#627083;line-height:1.85;font-size:1.05rem;max-width:720px}
.sol-collab-card{background:#f4f7fa;border:1px solid #e1e8ef;border-radius:22px;padding:34px}
.sol-collab-card h3{font-size:1.4rem;margin:0 0 20px}
.sol-collab-card ol{list-style:none;padding:0;margin:0 0 26px}
.sol-collab-card li{display:flex;align-items:center;gap:12px;padding:12px 0;border-bottom:1px solid #dfe6ed;color:#425064}
.sol-collab-card li span{width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:#dcecff;color:#1767b7;font-weight:900;font-size:.78rem}
.sol-final-cta{padding:74px 0;background:linear-gradient(120deg,#1767b7,#0e4e8a);color:#fff}
.sol-final-inner{display:grid;grid-template-columns:1.25fr .75fr;gap:50px;align-items:center}
.sol-final-inner h2{font-size:clamp(2rem,3.4vw,3.4rem);line-height:1.08;color:#fff;margin:0}
.sol-final-actions{display:flex;flex-direction:column;align-items:flex-start;gap:16px}
.sol-btn-white{background:#fff;color:#0e4e8a}
.sol-whatsapp{color:#fff;text-decoration:none;font-weight:800;border-bottom:1px solid rgba(255,255,255,.45);padding-bottom:4px}

@media(max-width:1100px){
  .sol-hero-grid{grid-template-columns:1fr .8fr;gap:36px}
  .sol-industry-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sol-rd-grid,.sol-collab-grid{gap:44px}
}
@media(max-width:820px){
  .sol-hero{padding:140px 0 70px}
  .sol-hero-grid,.sol-intro-grid,.sol-section-head,.sol-rd-grid,.sol-collab-grid,.sol-final-inner{grid-template-columns:1fr}
  .sol-hero-grid{gap:44px}.sol-intro-grid,.sol-section-head{gap:24px}
  .sol-rd-grid,.sol-collab-grid{gap:42px}
  .sol-final-actions{align-items:flex-start}
}
@media(max-width:560px){
  .sol-hero{padding:118px 0 58px}
  .sol-hero-copy h1{font-size:2.45rem}
  .sol-hero-copy>p{font-size:1rem}
  .sol-hero-actions{flex-direction:column}
  .sol-hero-actions .btn{width:100%;text-align:center}
  .sol-proof{gap:12px;flex-direction:column}
  .sol-hero-panel{padding:24px 20px;border-radius:18px}
  .sol-intro,.sol-industries,.sol-rd,.sol-collab{padding:68px 0}
  .sol-industry-grid,.sol-focus-grid{grid-template-columns:1fr}
  .sol-industry-card{min-height:auto}
  .sol-section-head{margin-bottom:32px}
  .sol-collab-card{padding:26px 20px}
  .sol-final-cta{padding:60px 0}
}


/* =========================================================
   PHASE 5 — CONTACT PAGE
   Scoped styles: .contact-page
   ========================================================= */
.contact-page{background:#fff;color:#172033}
.contact-page h1,.contact-page h2,.contact-page h3{letter-spacing:-.035em}
.con-hero{padding:170px 0 86px;background:radial-gradient(circle at 82% 18%,rgba(52,143,224,.2),transparent 30%),linear-gradient(135deg,#071426,#0d2948);color:#fff}
.con-hero-grid{display:grid;grid-template-columns:1.25fr .55fr;gap:80px;align-items:center}
.con-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:.76rem;font-weight:900;letter-spacing:.14em;text-transform:uppercase;color:#8ec5ff;margin-bottom:18px}
.con-eyebrow:before{content:"";width:32px;height:2px;background:currentColor}
.con-eyebrow.dark{color:#1767b7}
.con-hero h1{font-size:clamp(2.8rem,5.2vw,5.1rem);line-height:1.02;color:#fff;margin:0 0 24px;max-width:900px}
.con-hero p{font-size:1.08rem;line-height:1.8;color:#c7d6e5;max-width:760px;margin:0}
.con-hero-note{padding:28px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);border-radius:20px}
.con-hero-note span{display:block;color:#8ec5ff;text-transform:uppercase;letter-spacing:.12em;font-size:.7rem;font-weight:900;margin-bottom:14px}
.con-hero-note strong{display:block;padding:13px 0;border-top:1px solid rgba(255,255,255,.12);color:#eef5fb;font-size:.92rem}
.con-main{padding:100px 0;background:#f6f8fb}
.con-main-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:54px;align-items:start}
.con-info{position:sticky;top:110px}
.con-info h2,.con-form-head h2,.con-section-head h2{font-size:clamp(2rem,3.2vw,3.25rem);line-height:1.08;margin:0 0 18px}
.con-intro{color:#667487;line-height:1.8;margin-bottom:34px}
.con-info-list{border-top:1px solid #dce4ec}
.con-info-item{display:grid;grid-template-columns:42px 1fr;gap:16px;padding:22px 0;border-bottom:1px solid #dce4ec}
.con-icon{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#e1effc;color:#1767b7;font-size:.7rem;font-weight:900}
.con-info-item small{display:block;color:#7a8798;text-transform:uppercase;letter-spacing:.1em;font-size:.66rem;font-weight:900;margin-bottom:6px}
.con-info-item p,.con-info-item a{color:#26394f;line-height:1.65;margin:0;text-decoration:none;font-weight:600}
.con-wa-card{margin-top:24px;padding:20px 22px;background:#0f6b48;color:#fff;border-radius:16px;display:grid;grid-template-columns:1fr auto;gap:3px 16px;text-decoration:none}
.con-wa-card span{font-size:.68rem;text-transform:uppercase;letter-spacing:.12em;opacity:.78}
.con-wa-card strong{grid-column:1;font-size:1rem}
.con-wa-card b{grid-column:2;grid-row:1/3;align-self:center;font-size:1.4rem}
.con-form-card{background:#fff;border:1px solid #e0e7ee;border-radius:24px;padding:40px;box-shadow:0 20px 60px rgba(20,46,76,.08)}
.con-form-head p{color:#6b7889;line-height:1.7;margin:0 0 28px}
.con-alert{padding:15px 17px;border-radius:10px;margin-bottom:22px;font-size:.9rem;font-weight:700}
.con-alert.success{background:#e6f6ed;color:#17663d}.con-alert.warning{background:#fff5d8;color:#7a5700}.con-alert.error{background:#fdeaea;color:#8c2929}
.con-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.con-field{display:flex;flex-direction:column;gap:8px}
.con-full{grid-column:1/-1}
.con-field label{font-size:.8rem;font-weight:800;color:#34465b}
.con-field input,.con-field select,.con-field textarea{width:100%;border:1px solid #d6e0e9;border-radius:10px;background:#fbfcfd;color:#172033;padding:14px 15px;font:inherit;outline:none;transition:border-color .2s,box-shadow .2s,background .2s}
.con-field textarea{resize:vertical;min-height:150px}
.con-field input:focus,.con-field select:focus,.con-field textarea:focus{border-color:#2b7fc6;box-shadow:0 0 0 4px rgba(43,127,198,.11);background:#fff}
.con-field small{color:#8792a0;font-size:.72rem}
.con-submit-row{display:flex;align-items:center;gap:20px;margin-top:4px}
.con-submit-row p{margin:0;color:#7c8998;font-size:.72rem;line-height:1.5}
.con-pathways{padding:100px 0;background:#fff}
.con-section-head{text-align:center;max-width:760px;margin:0 auto 44px}
.con-path-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.con-path-grid article{border:1px solid #e1e8ef;border-radius:18px;padding:30px;background:#fff}
.con-path-grid article.boomi{background:#f7faf3;border-color:#dfe9d5}
.con-path-grid article>span{font-size:.68rem;text-transform:uppercase;letter-spacing:.12em;color:#1767b7;font-weight:900}
.con-path-grid article.boomi>span{color:#547c35}
.con-path-grid h3{font-size:1.4rem;margin:14px 0 10px}
.con-path-grid p{color:#687587;line-height:1.7;font-size:.92rem;min-height:92px}
.con-path-grid a{color:#1767b7;text-decoration:none;font-weight:900;font-size:.84rem}
.con-path-grid .boomi a{color:#547c35}
.con-final{padding:72px 0;background:linear-gradient(120deg,#1767b7,#0d4c87);color:#fff}
.con-final-inner{display:grid;grid-template-columns:1fr auto;gap:50px;align-items:center}
.con-final h2{font-size:clamp(2rem,3.2vw,3.2rem);color:#fff;margin:0 0 10px}
.con-final p{color:#d5e4f2;margin:0}
.con-final-inner>div:last-child{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.con-btn-white{background:#fff;color:#0d4c87}
.con-text-link{color:#fff;text-decoration:none;font-weight:900}
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}

@media(max-width:1000px){
 .con-hero-grid{grid-template-columns:1fr .65fr;gap:40px}
 .con-main-grid{grid-template-columns:.8fr 1.2fr;gap:30px}
 .con-form-card{padding:30px}
}
@media(max-width:820px){
 .con-hero{padding:140px 0 70px}
 .con-hero-grid,.con-main-grid,.con-final-inner{grid-template-columns:1fr}
 .con-info{position:static}
 .con-path-grid{grid-template-columns:1fr}
 .con-path-grid p{min-height:0}
}
@media(max-width:560px){
 .con-hero{padding:118px 0 58px}
 .con-hero h1{font-size:2.45rem}
 .con-main,.con-pathways{padding:68px 0}
 .con-form-card{padding:26px 18px;border-radius:18px}
 .con-form{grid-template-columns:1fr;gap:17px}
 .con-full{grid-column:auto}
 .con-submit-row{flex-direction:column;align-items:stretch}
 .con-submit-row .btn{width:100%;text-align:center}
 .con-final{padding:58px 0}
}

/* FINAL PRODUCTION REFINEMENTS */
img{max-width:100%;height:auto}
img[loading="lazy"]{content-visibility:auto}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid rgba(38,132,214,.45);outline-offset:3px}
.error-hero{min-height:78vh;padding:190px 0 100px;background:linear-gradient(135deg,#071426,#0d2948);display:grid;align-items:center;color:#fff}
.error-inner{max-width:820px;text-align:center}
.error-inner>span{display:inline-block;color:#8ec5ff;font-weight:900;letter-spacing:.14em;text-transform:uppercase;font-size:.78rem;margin-bottom:18px}
.error-inner h1{font-size:clamp(2.8rem,6vw,5.5rem);line-height:1;color:#fff;margin:0 0 22px}
.error-inner p{color:#c8d7e6;line-height:1.8;font-size:1.08rem;max-width:680px;margin:0 auto 30px}
.error-inner>div{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}
.error-btn{border:1px solid rgba(255,255,255,.3);color:#fff;background:transparent}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}
@media(max-width:560px){.error-hero{padding:140px 0 70px}.error-inner>div{flex-direction:column}.error-inner .btn{width:100%}}


/* =========================================================
   APPROVED HEADER CONCEPT 01 — FINAL IMPLEMENTATION
   ========================================================= */
.sg-header{position:fixed;z-index:1200;top:0;left:0;width:100%;font-family:inherit}
.sg-topbar{height:34px;background:#0b1f36;color:#c9d7e5}
.sg-topbar-inner{height:34px;display:flex;align-items:center;justify-content:space-between;gap:24px;font-size:12px}
.sg-location{white-space:nowrap}
.sg-top-contact{display:flex;align-items:center;gap:26px}
.sg-top-contact a{color:#dce8f2;text-decoration:none;transition:color .2s ease}
.sg-top-contact a:hover{color:#fff}
.sg-navbar{height:92px;background:rgba(255,255,255,.98);border-bottom:1px solid #e4eaf0;box-shadow:0 8px 30px rgba(17,39,62,.06);backdrop-filter:blur(12px)}
.sg-nav-inner{height:92px;display:flex;align-items:center;gap:28px}
.sg-brand{display:flex;align-items:center;flex:0 0 auto;width:230px;height:78px;overflow:hidden;text-decoration:none}
.sg-brand img{display:block;width:210px!important;height:74px!important;max-width:210px!important;object-fit:contain!important;object-position:left center}
.sg-desktop-nav{display:flex;align-items:center;justify-content:center;gap:30px;margin-left:auto;white-space:nowrap}
.sg-desktop-nav a{position:relative;color:#26394c;text-decoration:none;font-size:14px;font-weight:700;line-height:92px;transition:color .2s ease}
.sg-desktop-nav a:hover,.sg-desktop-nav a.active{color:#0e5ea8}
.sg-desktop-nav a.active:after{content:"";position:absolute;left:0;right:0;bottom:20px;height:3px;border-radius:3px;background:#0e5ea8}
.sg-header-cta{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 20px;border-radius:9px;background:#1268b3;color:#fff!important;text-decoration:none;font-size:12px;font-weight:900;letter-spacing:.035em;text-transform:uppercase;box-shadow:0 9px 24px rgba(18,104,179,.2);transition:transform .2s ease,background .2s ease}
.sg-header-cta:hover{background:#0e5798;transform:translateY(-1px)}
.sg-menu-btn{display:none;width:44px;height:44px;padding:10px;border:0;border-radius:9px;background:#eef5fb;cursor:pointer}
.sg-menu-btn span{display:block;width:100%;height:2px;margin:5px 0;background:#173149;border-radius:2px;transition:.25s ease}
.sg-mobile-nav{display:none}
.sg-header.is-scrolled .sg-topbar{height:0;overflow:hidden}
.sg-header.is-scrolled .sg-navbar,.sg-header.is-scrolled .sg-nav-inner{height:76px}
.sg-header.is-scrolled .sg-desktop-nav a{line-height:76px}
.sg-header.is-scrolled .sg-brand{height:68px}
.sg-header.is-scrolled .sg-brand img{height:64px!important}

/* Compensate fixed approved header on pages that do not provide their own large hero spacing */
body{padding-top:126px}
.home-page,.about-page,.products-page,.solutions-page,.contact-page{margin-top:-126px}
.home-page>section:first-child,.about-page>section:first-child,.products-page>section:first-child,.solutions-page>section:first-child,.contact-page>section:first-child{padding-top:170px}

@media(max-width:1180px){
 .sg-nav-inner{gap:18px}
 .sg-brand{width:205px}
 .sg-brand img{width:190px!important;max-width:190px!important}
 .sg-desktop-nav{gap:20px}
 .sg-desktop-nav a{font-size:13px}
 .sg-header-cta{padding:0 15px;font-size:11px}
}
@media(max-width:980px){
 .sg-top-contact a:last-child{display:none}
 .sg-desktop-nav,.sg-header-cta{display:none}
 .sg-nav-inner{justify-content:space-between}
 .sg-menu-btn{display:block;margin-left:auto}
 .sg-mobile-nav{position:absolute;top:126px;left:0;width:100%;padding:14px 20px 22px;background:#fff;border-top:1px solid #e5ebf1;box-shadow:0 18px 38px rgba(17,39,62,.14);transform:translateY(-12px);opacity:0;visibility:hidden;pointer-events:none;transition:.25s ease}
 .sg-mobile-nav.open{display:block;transform:translateY(0);opacity:1;visibility:visible;pointer-events:auto}
 .sg-mobile-nav a{display:block;padding:14px 8px;border-bottom:1px solid #edf1f5;color:#26394c;text-decoration:none;font-size:14px;font-weight:750}
 .sg-mobile-nav a.active{color:#0e5ea8}
 .sg-mobile-nav .sg-mobile-enquiry{margin-top:12px;border:0;border-radius:9px;background:#1268b3;color:#fff;text-align:center}
 .sg-mobile-nav .sg-mobile-call{border:0;text-align:center;color:#0e5ea8}
 .sg-header.is-scrolled .sg-mobile-nav{top:76px}
}
@media(max-width:600px){
 .sg-topbar{height:30px}
 .sg-topbar-inner{height:30px;font-size:10px}
 .sg-location{overflow:hidden;text-overflow:ellipsis}
 .sg-top-contact{gap:10px}.sg-top-contact a{font-size:10px}
 .sg-navbar,.sg-nav-inner{height:76px}
 .sg-brand{width:178px;height:68px}
 .sg-brand img{width:168px!important;height:62px!important;max-width:168px!important}
 .sg-mobile-nav{top:106px;padding-left:14px;padding-right:14px}
 body{padding-top:106px}
 .home-page,.about-page,.products-page,.solutions-page,.contact-page{margin-top:-106px}
 .home-page>section:first-child,.about-page>section:first-child,.products-page>section:first-child,.solutions-page>section:first-child,.contact-page>section:first-child{padding-top:140px}
}


/* HEADER V2 POLISH — isolated cache-busted production override */
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;z-index:9999;padding:10px 14px;background:#fff;color:#0b1f36;border-radius:8px}

.sg-brand{width:250px!important;height:82px!important}
.sg-brand img{width:235px!important;height:78px!important;max-width:235px!important;object-fit:contain!important;object-position:left center!important}

/* Fixed header occupies 126px; content begins immediately after it. */
body{padding-top:126px!important}
.home-page,.about-page,.products-page,.solutions-page,.contact-page{margin-top:0!important}

/* Cancel earlier generic first-section compensation rules */
.home-page>section:first-child,
.about-page>section:first-child,
.products-page>section:first-child,
.solutions-page>section:first-child,
.contact-page>section:first-child{padding-top:unset}

/* Restore intended hero paddings explicitly */
.solutions-page .sol-hero{padding-top:180px!important}
.contact-page .con-hero{padding-top:180px!important}

@media(max-width:1180px){
 .sg-brand{width:220px!important}
 .sg-brand img{width:210px!important;max-width:210px!important;height:74px!important}
}
@media(max-width:600px){
 body{padding-top:106px!important}
 .sg-brand{width:185px!important;height:68px!important}
 .sg-brand img{width:175px!important;max-width:175px!important;height:62px!important}
 .solutions-page .sol-hero,.contact-page .con-hero{padding-top:120px!important}
}


/* CROPPED HEADER LOGO FIX V4 — artwork has no internal empty padding */
.sg-brand{
  width:245px!important;
  height:92px!important;
  flex:0 0 245px!important;
  overflow:visible!important;
}
.sg-brand img{
  width:220px!important;
  height:auto!important;
  max-width:220px!important;
  max-height:78px!important;
  object-fit:contain!important;
  object-position:left center!important;
}
@media(max-width:1180px){
 .sg-brand{width:215px!important;flex-basis:215px!important}
 .sg-brand img{width:195px!important;max-width:195px!important}
}
@media(max-width:980px){
 .sg-brand{width:205px!important;flex-basis:205px!important}
 .sg-brand img{width:188px!important;max-width:188px!important}
}
@media(max-width:600px){
 .sg-brand{width:180px!important;height:76px!important;flex-basis:180px!important}
 .sg-brand img{width:165px!important;max-width:165px!important;max-height:62px!important}
}


/* =========================================================
   APPROVED HOME HERO CONCEPT 01
   Scoped: .approved-home-hero
   ========================================================= */
.approved-home-hero{
  position:relative;
  overflow:hidden;
  min-height:calc(100vh - 126px);
  padding:82px 0 42px;
  background:
    radial-gradient(circle at 92% 28%,rgba(37,181,213,.11) 0 12%,transparent 12.2%),
    linear-gradient(135deg,#f6fbfe 0%,#edf8fc 58%,#f7fbfd 100%);
}
.approved-home-hero:before{
  content:"";position:absolute;width:520px;height:520px;border:1px solid rgba(24,169,205,.22);
  border-radius:50%;right:16%;top:25%;pointer-events:none
}
.ah-hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,.92fr) minmax(520px,1.08fr);gap:72px;align-items:center}
.ah-copy{padding:18px 0}
.ah-eyebrow{display:inline-flex;align-items:center;gap:10px;color:#12a6c8;font-size:12px;font-weight:900;letter-spacing:.14em;text-transform:uppercase;margin-bottom:24px}
.ah-eyebrow:before{content:"";width:34px;height:2px;background:#12a6c8}
.ah-copy h1{max-width:700px;margin:0 0 24px;color:#071a3e;font-size:clamp(3.6rem,5.6vw,6.2rem);line-height:.98;letter-spacing:-.065em}
.ah-copy h1 em{display:block;color:#08a9cd;font-style:normal}
.ah-copy>p{max-width:720px;margin:0;color:#52667a;font-size:1.06rem;line-height:1.8}
.ah-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.ah-btn{min-height:54px;padding:0 26px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;gap:12px;text-decoration:none;font-size:12px;font-weight:900;letter-spacing:.035em;text-transform:uppercase;transition:transform .2s ease,box-shadow .2s ease}
.ah-btn:hover{transform:translateY(-2px)}
.ah-btn-primary{background:#0d6db8;color:#fff;box-shadow:0 12px 28px rgba(13,109,184,.22)}
.ah-btn-secondary{background:#fff;color:#173149;border:1px solid #b7cfde}
.ah-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px;padding-top:26px;border-top:1px solid rgba(56,105,137,.16)}
.ah-metrics>div{display:flex;align-items:flex-start;gap:10px}
.ah-metrics strong{color:#0d6db8;font-size:1.55rem;line-height:1}
.ah-metrics span{color:#52667a;font-size:.75rem;line-height:1.45}
.ah-visual{position:relative;min-height:500px;display:flex;align-items:center;justify-content:center}
.ah-visual img{position:relative;z-index:2;width:100%;max-width:650px;height:455px;object-fit:cover;border-radius:28px;box-shadow:0 28px 70px rgba(8,35,67,.2)}
.ah-orbit{position:absolute;border-radius:50%;border:1px solid rgba(24,169,205,.3);z-index:1}
.ah-orbit-one{width:510px;height:510px}.ah-orbit-two{width:390px;height:390px}
.ah-badge{position:absolute;z-index:4;background:#fff;border:1px solid rgba(213,228,238,.9);box-shadow:0 14px 35px rgba(16,49,78,.13);border-radius:14px;padding:15px 18px}
.ah-badge strong,.ah-badge span{display:block}
.ah-badge strong{color:#112847;font-size:1rem}.ah-badge span{color:#718196;font-size:.7rem;margin-top:4px}
.ah-badge-material{left:-14px;top:82px}.ah-badge-rd{right:-8px;bottom:44px}
.ah-trust-wrap{position:relative;z-index:3;margin-top:34px}
.ah-trust{display:grid;grid-template-columns:repeat(4,1fr);background:#fff;border:1px solid #dceaf1;border-radius:18px;box-shadow:0 15px 40px rgba(20,55,82,.06);overflow:hidden}
.ah-trust>div{padding:22px 26px;border-right:1px solid #e5eef3}
.ah-trust>div:last-child{border-right:0}
.ah-trust strong,.ah-trust span{display:block}
.ah-trust strong{color:#0d6db8;font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:7px}
.ah-trust span{color:#607386;font-size:.75rem}

@media(max-width:1100px){
 .ah-hero-grid{grid-template-columns:1fr 1fr;gap:38px}
 .ah-copy h1{font-size:clamp(3.2rem,5.6vw,5rem)}
 .ah-visual img{height:410px}
 .ah-badge-material{left:-4px}
}
@media(max-width:900px){
 .approved-home-hero{min-height:auto;padding:64px 0 38px}
 .ah-hero-grid{grid-template-columns:1fr;gap:44px}
 .ah-copy{max-width:760px}
 .ah-visual{min-height:440px}
 .ah-visual img{max-width:720px;height:430px}
 .ah-trust{grid-template-columns:repeat(2,1fr)}
 .ah-trust>div:nth-child(2){border-right:0}
 .ah-trust>div:nth-child(-n+2){border-bottom:1px solid #e5eef3}
}
@media(max-width:600px){
 .approved-home-hero{padding:46px 0 28px}
 .ah-eyebrow{font-size:10px;letter-spacing:.1em;margin-bottom:18px}
 .ah-copy h1{font-size:clamp(2.7rem,13vw,4rem);letter-spacing:-.055em}
 .ah-copy>p{font-size:.95rem;line-height:1.7}
 .ah-actions{flex-direction:column}
 .ah-btn{width:100%}
 .ah-metrics{grid-template-columns:1fr;gap:14px;margin-top:30px}
 .ah-visual{min-height:340px}
 .ah-visual img{height:320px;border-radius:20px}
 .ah-orbit-one{width:340px;height:340px}.ah-orbit-two{width:260px;height:260px}
 .ah-badge{padding:11px 13px}
 .ah-badge-material{left:-4px;top:36px}.ah-badge-rd{right:-4px;bottom:18px}
 .ah-trust{grid-template-columns:1fr}
 .ah-trust>div{border-right:0!important;border-bottom:1px solid #e5eef3!important;padding:18px 20px}
 .ah-trust>div:last-child{border-bottom:0!important}
}


/* =========================================================
   HOME HERO VIEWPORT POLISH V2 — live desktop QA
   Compact above-the-fold composition without redesign
   ========================================================= */
@media(min-width:1101px){
  .approved-home-hero{
    min-height:auto!important;
    padding:34px 0 30px!important;
  }
  .approved-home-hero:before{
    width:430px!important;
    height:430px!important;
    top:18%!important;
  }
  .ah-hero-grid{
    grid-template-columns:minmax(0,.9fr) minmax(500px,1.1fr)!important;
    gap:58px!important;
    align-items:center!important;
  }
  .ah-copy{
    padding:0!important;
  }
  .ah-eyebrow{
    margin-bottom:17px!important;
  }
  .ah-copy h1{
    max-width:650px!important;
    margin-bottom:18px!important;
    font-size:clamp(3.25rem,4.55vw,5.15rem)!important;
    line-height:.96!important;
  }
  .ah-copy>p{
    max-width:660px!important;
    font-size:.96rem!important;
    line-height:1.65!important;
  }
  .ah-actions{
    margin-top:22px!important;
  }
  .ah-btn{
    min-height:48px!important;
    padding:0 22px!important;
  }
  .ah-metrics{
    margin-top:26px!important;
    padding-top:20px!important;
  }
  .ah-visual{
    min-height:410px!important;
  }
  .ah-visual img{
    max-width:610px!important;
    height:390px!important;
  }
  .ah-orbit-one{width:440px!important;height:440px!important}
  .ah-orbit-two{width:330px!important;height:330px!important}
  .ah-badge-material{top:48px!important}
  .ah-badge-rd{bottom:20px!important}
  .ah-trust-wrap{
    margin-top:24px!important;
  }
  .ah-trust>div{
    padding:17px 22px!important;
  }
}

/* Short desktop/laptop screens: ensure actions and proof points remain visible */
@media(min-width:901px) and (max-height:820px){
  .approved-home-hero{padding-top:24px!important}
  .ah-copy h1{font-size:clamp(3rem,4.15vw,4.65rem)!important}
  .ah-copy>p{line-height:1.55!important}
  .ah-visual{min-height:370px!important}
  .ah-visual img{height:355px!important}
  .ah-actions{margin-top:18px!important}
  .ah-metrics{margin-top:20px!important;padding-top:16px!important}
  .ah-trust-wrap{margin-top:18px!important}
}


/* =========================================================
   FULL RECOVERY V3 — SAFE HEADER/HERO GAP CORRECTION
   Complete stylesheet; no partial CSS overwrite.
   ========================================================= */
body{
  padding-top:126px!important;
}
.approved-home-hero{
  margin-top:0!important;
}

/* Desktop: hero begins immediately after the fixed header.
   Small internal padding remains for visual breathing room. */
@media(min-width:901px){
  .approved-home-hero{
    padding-top:24px!important;
  }
}

/* Mobile fixed header height */
@media(max-width:600px){
  body{
    padding-top:106px!important;
  }
  .approved-home-hero{
    padding-top:32px!important;
  }
}


/* =========================================================
   ALL PAGES HEADER GAP FIX V5
   Remove duplicated global body offset below in-flow header.
   ========================================================= */
html body{
  padding-top:0!important;
}

main,
.page-main,
.site-main{
  margin-top:0!important;
}

/* Home: cancel previous negative screenshot patch and keep only
   intentional internal hero breathing room. */
@media(min-width:901px){
  .approved-home-hero{
    margin-top:0!important;
    padding-top:24px!important;
  }
}

@media(max-width:600px){
  html body{
    padding-top:0!important;
  }
}


/* =========================================================
   HOME HERO INNER OFFSET FIX V6
   Keep header-to-hero gap at zero.
   Move only the hero's inner content down so eyebrow is visible.
   ========================================================= */
@media(min-width:901px){
  .approved-home-hero .ah-hero-grid{
    transform:translateY(24px)!important;
  }
  .approved-home-hero .ah-trust-wrap{
    transform:translateY(24px)!important;
  }
  .approved-home-hero{
    padding-bottom:48px!important;
  }
}


/* =========================================================
   FULLSCREEN HERO IMAGE V7
   Full-width WebP hero background with readable content overlay.
   ========================================================= */
.approved-home-hero{
  position:relative!important;
  min-height:calc(100vh - 126px)!important;
  margin-top:0!important;
  padding:0!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  background:
    linear-gradient(90deg,
      rgba(3,18,43,.94) 0%,
      rgba(3,18,43,.88) 34%,
      rgba(3,18,43,.50) 57%,
      rgba(3,18,43,.08) 100%),
    url("../images/sasglobal_hero_fullscreen.webp") center center / cover no-repeat!important;
}
.approved-home-hero:before{
  display:none!important;
}
.approved-home-hero .ah-hero-grid{
  width:100%!important;
  grid-template-columns:minmax(0,680px) 1fr!important;
  gap:40px!important;
  padding-top:48px!important;
  padding-bottom:24px!important;
  transform:none!important;
}
.approved-home-hero .ah-copy{
  position:relative!important;
  z-index:3!important;
}
.approved-home-hero .ah-eyebrow{
  color:#53dcf5!important;
}
.approved-home-hero .ah-eyebrow:before{
  background:#53dcf5!important;
}
.approved-home-hero .ah-copy h1{
  color:#fff!important;
  text-shadow:0 4px 28px rgba(0,0,0,.22)!important;
}
.approved-home-hero .ah-copy h1 em{
  color:#20c6e6!important;
}
.approved-home-hero .ah-copy>p{
  color:rgba(255,255,255,.84)!important;
  max-width:650px!important;
}
.approved-home-hero .ah-btn-secondary{
  color:#fff!important;
  background:rgba(255,255,255,.10)!important;
  border-color:rgba(255,255,255,.38)!important;
  backdrop-filter:blur(10px)!important;
}
.approved-home-hero .ah-metrics{
  border-top-color:rgba(255,255,255,.18)!important;
}
.approved-home-hero .ah-metrics strong{
  color:#42d4ef!important;
}
.approved-home-hero .ah-metrics span{
  color:rgba(255,255,255,.76)!important;
}

/* Original right-side card is removed because the image is now the full hero. */
.approved-home-hero .ah-visual{
  display:none!important;
}

/* Trust strip becomes a premium glass panel over the full-screen image. */
.approved-home-hero .ah-trust-wrap{
  transform:none!important;
  margin-top:18px!important;
  padding-bottom:26px!important;
}
.approved-home-hero .ah-trust{
  background:rgba(4,24,50,.68)!important;
  border-color:rgba(255,255,255,.16)!important;
  backdrop-filter:blur(14px)!important;
  box-shadow:0 18px 45px rgba(0,0,0,.18)!important;
}
.approved-home-hero .ah-trust>div{
  border-right-color:rgba(255,255,255,.13)!important;
}
.approved-home-hero .ah-trust strong{
  color:#47d8f2!important;
}
.approved-home-hero .ah-trust span{
  color:rgba(255,255,255,.76)!important;
}

@media(max-width:900px){
  .approved-home-hero{
    min-height:calc(100vh - 110px)!important;
    background:
      linear-gradient(90deg,rgba(3,18,43,.93),rgba(3,18,43,.68)),
      url("../images/sasglobal_hero_fullscreen.webp") 62% center / cover no-repeat!important;
  }
  .approved-home-hero .ah-hero-grid{
    grid-template-columns:1fr!important;
    padding-top:52px!important;
  }
}

@media(max-width:600px){
  .approved-home-hero{
    min-height:auto!important;
    background:
      linear-gradient(180deg,rgba(3,18,43,.94) 0%,rgba(3,18,43,.80) 100%),
      url("../images/sasglobal_hero_fullscreen.webp") 68% center / cover no-repeat!important;
  }
  .approved-home-hero .ah-hero-grid{
    padding-top:42px!important;
    padding-bottom:18px!important;
  }
  .approved-home-hero .ah-copy h1{
    font-size:clamp(2.65rem,13vw,4rem)!important;
  }
  .approved-home-hero .ah-trust-wrap{
    padding-bottom:20px!important;
  }
}



/* =========================================================
   SG HERO - DARK MATTER CANVAS
   Premium Advanced Materials Hero (Scoped)
   ========================================================= */

/* GLOBAL HEADER GAP FIX */
body { padding-top: 126px !important; }
main, .about-page, .products-page, .solutions-page, .contact-page { padding-top: 0 !important; margin-top: 0 !important; }

.sg-hero { position: relative; background: linear-gradient(135deg, rgba(4, 13, 26, 0.85) 0%, rgba(10, 31, 48, 0.9) 100%), url('../images/sasglobal_hero_fullscreen.webp') center 15%/cover no-repeat; color: #ffffff; overflow: hidden; font-family: var(--font-base, 'Inter', sans-serif); margin-top: 0; }

.sg-hero-canvas { position: relative; padding: 60px 0 30px;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}

/* Subtle scientific depth using restrained radial gradients */
.sg-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 50%, rgba(0, 168, 204, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(0, 80, 120, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.sg-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.sg-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.sg-hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #55d6eb;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sg-hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #55d6eb;
}

.sg-hero-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.sg-hero-highlight {
  font-style: normal;
  color: #00a8cc;
}

.sg-hero-desc {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 0 40px;
}

.sg-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-heading, 'Outfit', sans-serif);
}

.sg-btn span {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.sg-btn:hover span {
  transform: translateX(4px);
}

.sg-btn-primary {
  background: linear-gradient(135deg, #00a8cc, #007a99);
  color: #ffffff;
  border: 1px solid transparent;
}

.sg-btn-primary:hover {
  background: linear-gradient(135deg, #00bfeb, #008db3);
  box-shadow: 0 8px 24px rgba(0, 168, 204, 0.25);
}

.sg-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.sg-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Image on the right side */
.sg-hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.sg-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  /* CSS mask for seamless integration into the dark canvas */
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.sg-hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.sg-hero-metrics {
  grid-column: 1 / 2;
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sg-metric {
  display: flex;
  flex-direction: column;
}

.sg-metric strong {
  display: flex;
  align-items: center;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 80px;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.sg-plus {
  font-size: 45px;
  color: #ffffff;
  margin-left: 4px;
  font-weight: 800;
}

.sg-metric > span {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Trust Bar / Strip */
.sg-hero-trust-bar {
  background: rgba(4, 13, 26, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  position: relative;
  z-index: 2;
}

.sg-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sg-trust-item {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  border-left: 2px solid rgba(0, 168, 204, 0.3);
}

.sg-trust-item strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.sg-trust-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .sg-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .sg-hero-canvas {
    min-height: auto;
    padding: 60px 0 40px;
  }
  
  .sg-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .sg-hero-content {
    order: 1;
  }
  
  .sg-hero-visual {
    order: 2;
    justify-content: center;
  }
  
  .sg-hero-metrics {
    order: 3;
    grid-column: 1 / -1;
    gap: 32px;
    padding-top: 24px;
    margin-top: 0;
    border-top: 0;
  }
  
  .sg-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  /* Prevent margin offset on mobile so hero doesn't tuck completely under */
  .sg-hero {
    margin-top: 0;
  }

  .sg-hero-canvas {
    padding: 40px 0 32px;
  }
  
  .sg-hero-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 16px;
  }
  
  .sg-hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 16px;
  }
  
  .sg-hero-desc {
    margin-bottom: 32px;
  }
  
  .sg-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .sg-btn {
    width: 100%;
  }
  
  .sg-hero-metrics {
    flex-direction: column;
    gap: 24px;
  }
  
  .sg-metric {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  
  .sg-metric strong {
    margin-bottom: 0;
    min-width: 60px;
  }
  
  .sg-trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* METRICS OUTLINE FIX */`n.sg-hero-metrics {`n  background-color: transparent !important;`n  padding: 24px 32px !important;`n  border-radius: 16px;`n  border: 1px solid rgba(255, 255, 255, 0.25) !important;`n  box-shadow: none !important;`n  gap: 48px;`n  margin-top: 10px;`n}`n.sg-metric strong {`n  color: #ffffff !important;`n}`n.sg-plus {`n  color: #ffffff !important;`n}`n.sg-metric > span {`n  color: rgba(255, 255, 255, 0.75) !important;`n  font-weight: 400;`n}`n@media (max-width: 900px) {`n  .sg-hero-metrics {`n    padding: 32px !important;`n  }`n}`n@media (max-width: 600px) {`n  .sg-hero-metrics {`n    padding: 24px !important;`n  }`n}

/* HERO PADDING OVERRIDE TO CLEAR HEADER */
.sg-hero-canvas {
  padding-top: 186px !important;
}
@media (max-width: 900px) {
  .sg-hero-canvas {
    padding-top: 160px !important;
  }
}
@media (max-width: 600px) {
  .sg-hero-canvas {
    padding-top: 146px !important;
  }
}


/* LEAF GREEN BOOMI ORGANIC PANEL */
.organic-panel {
  background: linear-gradient(135deg, #128c7e, #25d366) !important;
}


/* PROPER WHATSAPP WIDGET */
.whatsapp-float-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid #e5eaf0;
}
.whatsapp-float-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.wa-widget-text {
  padding: 0 15px 0 20px;
  color: #0b1f36;
  font-family: var(--font-base, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.wa-widget-icon {
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 15px rgba(37,211,102,0.4);
  animation: wa-pulse 2s infinite;
}
.wa-widget-icon svg {
  width: 28px;
  height: 28px;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .wa-widget-text { display: none; }
  .whatsapp-float-widget { background: transparent; border: none; box-shadow: none; border-radius: 0; bottom: 20px; right: 20px; }
  .wa-widget-icon { width: 60px; height: 60px; box-shadow: 0 10px 25px rgba(37,211,102,0.4); animation: none; }
}


/* FIX: Ensure inner page hero sections have enough top padding so content clears the header */
.about-hero, .products-hero, .sol-hero, .con-hero { padding-top: 180px !important; }
@media(max-width:768px) { .about-hero, .products-hero, .sol-hero, .con-hero { padding-top: 120px !important; } }



/* Center navigation row links on desktop */
@media (min-width: 769px) { .about-nav-row { justify-content: center; } }



/* Founder Image Styling */
.founder-image { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; margin-bottom: 28px; }



/* Ensure vision section header stays on one line on desktop */
.vision-section .section-head { display: block; margin-bottom: 50px; }



/* Social integration */
.footer-social{display:flex;flex-wrap:wrap;gap:.65rem;margin-top:1.1rem}.footer-social a{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:.55rem .8rem;border:1px solid rgba(255,255,255,.2);border-radius:999px;font-size:.82rem;line-height:1;text-decoration:none;transition:transform .2s ease,border-color .2s ease,background .2s ease}.footer-social a:hover,.footer-social a:focus-visible{transform:translateY(-2px);border-color:rgba(255,255,255,.55);background:rgba(255,255,255,.08)}
@media(max-width:767px){.footer-social{gap:.5rem}.footer-social a{min-height:44px;padding:.65rem .85rem}}

/* 2026-07-08 product CTA + social icon refinements */
.products-hero .btn-boomi{background:#25D366;color:#07351d;border:1px solid #25D366;box-shadow:0 10px 28px rgba(37,211,102,.25)}
.products-hero .btn-boomi:hover{background:#1fbd5b;border-color:#1fbd5b;color:#052b17;transform:translateY(-2px);box-shadow:0 14px 34px rgba(37,211,102,.34)}
.footer-social{display:flex;align-items:center;gap:10px;margin-top:22px}
.footer-social .social-icon{width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;color:#fff;transition:transform .2s ease,box-shadow .2s ease,filter .2s ease}
.footer-social .social-icon svg{width:21px;height:21px;fill:currentColor;display:block}
.footer-social .social-icon.linkedin{background:#0A66C2}.footer-social .social-icon.instagram{background:linear-gradient(135deg,#833AB4,#E1306C 55%,#FCAF45)}.footer-social .social-icon.facebook{background:#1877F2}
.footer-social .social-icon:hover{transform:translateY(-3px);filter:brightness(1.06);box-shadow:0 10px 22px rgba(0,0,0,.2)}
@media(max-width:767px){.footer-social{justify-content:flex-start}.footer-social .social-icon{width:40px;height:40px}}
/* Final social + legal refinements */
.footer-social-row{display:flex;align-items:center;gap:16px;margin-top:22px;white-space:nowrap}.footer-social-row>strong{color:#fff;font-size:.95rem}.footer-social{display:flex!important;flex-direction:row!important;align-items:center;flex-wrap:nowrap!important;gap:12px!important;margin-top:0!important}.footer-social .social-icon{flex:0 0 42px!important;width:42px!important;height:42px!important;padding:0!important;border:0!important}.footer-social .social-icon.linkedin{background:#0A66C2!important}.footer-social .social-icon.instagram{background:linear-gradient(135deg,#833AB4 0%,#C13584 35%,#E1306C 58%,#F77737 78%,#FCAF45 100%)!important}.footer-social .social-icon.facebook{background:#1877F2!important}.footer-legal{display:flex;align-items:center;gap:20px}.footer-legal a{color:inherit;text-decoration:none}.footer-legal a:hover,.footer-legal a:focus-visible{text-decoration:underline;color:#fff}.legal-page{padding:70px 0;background:#f7faf9}.legal-card{max-width:920px;margin:auto;background:#fff;padding:clamp(24px,5vw,56px);border-radius:20px;box-shadow:0 18px 50px rgba(10,34,52,.08)}.legal-card h1{color:#0b1735;margin-bottom:10px}.legal-card h2{color:#0b1735;margin-top:30px;font-size:1.3rem}.legal-card p,.legal-card li{line-height:1.8;color:#465568}.legal-updated{color:#008f72!important;font-weight:700}@media(max-width:767px){.footer-social-row{flex-wrap:wrap;white-space:normal}.footer-social{flex-wrap:nowrap!important}.footer-bottom{gap:14px}.footer-legal{gap:14px;flex-wrap:wrap}}

/* ===== Cross-device product image consistency =====
   One asset per product across desktop, tablet and mobile. */
.product-visual,
.organic-img {
  overflow: hidden;
}
.product-visual img,
.organic-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}
/* Keep the screenshot-approved product visuals consistently framed. */
.product-visual img[src$="am_nzno.webp"] {
  object-position: center center;
}
.organic-img img[src$="boomi_oils.webp"] {
  object-position: center center;
}
@media (min-width: 768px) {
  .organic-img { height: 220px; }
}
@media (max-width: 767px) {
  .organic-img { height: 220px; }
}

/* Four-metric responsive hero grid */
.sg-hero-metrics {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 3vw, 42px) !important;
  align-items: start;
}
.sg-metric { min-width: 0; }
.sg-metric strong { font-variant-numeric: tabular-nums; }
@media (max-width: 900px) {
  .sg-hero-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 520px) {
  .sg-hero-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 22px 14px !important; }
  .sg-metric > span { font-size: 0.72rem; line-height: 1.35; }
}
