
  :root {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --brand-primary: #0284c7;
    --brand-dark: #0f172a;
    --brand-accent: #2563eb;
    
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
  }

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

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Typography Utilities */
  .mono { font-family: 'JetBrains Mono', monospace; }
  h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--brand-accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
  }
  .btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .btn-ghost:hover {
    background-color: #ffffff;
    border-color: var(--border-hover);
  }

  /* Navbar */
  .navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
  }
  .navbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .brandmark {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
  }
  .brandmark img { height: 36px; width: auto; }
  .brandmark .name span { color: var(--brand-accent); }
  
  .navlinks { display: flex; gap: 24px; }
  .navlinks a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .navlinks a:hover { color: var(--brand-accent); }

  /* Hero Section */
  .hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border-color);
  }
  .hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
  .hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #eff6ff;
    color: var(--brand-accent);
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 42px;
    line-height: 1.15;
    color: var(--brand-dark);
    margin-bottom: 20px;
  }
  .hero p.lede {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
  }
  .hero-actions { display: flex; gap: 16px; margin-bottom: 40px; }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
  }
  .stat .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-dark);
  }
  .stat .label { font-size: 12px; color: var(--text-muted); line-height: 1.3; }

  .hero-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    height: 100%;
    min-height: 400px;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,0.85) 100%);
  }
  .photo-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: #ffffff;
  }
  .photo-label strong { display: block; font-size: 18px; margin-bottom: 4px; }
  .photo-label span { font-size: 13px; color: #cbd5e1; }

  /* Section Styles */
  section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; max-width: 650px; }
  .section-head h2 { font-size: 32px; color: var(--brand-dark); margin-bottom: 12px; }
  .section-head p.sub { font-size: 16px; color: var(--text-secondary); }

  /* Lines Grid */
  .lines-grid { display: flex; flex-direction: column; gap: 24px; }
  .line-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    display: grid;
    grid-template-columns: 200px 1fr 240px;
    gap: 32px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .line-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
  }
  .line-header .line-name { font-size: 24px; font-weight: 700; color: var(--brand-dark); }
  .line-header .line-origin {
    font-size: 12px;
    background: var(--bg-main);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 6px;
    color: var(--text-muted);
  }
  .line-desc strong { color: var(--brand-dark); }
  .line-desc { color: var(--text-secondary); font-size: 15px; }
  
  .brand-card-img {
    height: 140px;
    background: var(--bg-main);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .brand-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }

  /* Sectors Grid */
  .sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
  .sector-cell {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: transform 0.2s;
  }
  .sector-cell:hover { transform: translateY(-4px); }
  .sector-icon {
    width: 48px;
    height: 48px;
    background: #f0f9ff;
    color: var(--brand-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .sector-tag { font-size: 11px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; }
  .sector-cell h3 { font-size: 18px; margin: 4px 0 10px 0; color: var(--brand-dark); }
  .sector-cell p { font-size: 14px; color: var(--text-secondary); }

  /* Clients Section */
  .clients-section { background: var(--bg-surface); border-y: 1px solid var(--border-color); }
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
  }
  .client-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
  }
  .client-card img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: all 0.2s; }
  .client-card img:hover { filter: grayscale(0%); opacity: 1; }
  .clients-note { font-size: 13px; color: var(--text-muted); text-align: center; }

  /* Why Grid */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
  }
  .why-item { display: flex; gap: 16px; }
  .why-mark {
    width: 36px;
    height: 36px;
    background: var(--brand-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
  }
  .why-item h3 { font-size: 18px; margin-bottom: 6px; }
  .why-item p { font-size: 14px; color: var(--text-secondary); }

  /* CTA Strip */
  .cta-strip { padding: 40px 0 80px 0; }
  .cta-box {
    background: var(--brand-dark);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: center;
  }
  .cta-box h2 { font-size: 30px; margin-bottom: 12px; color: #ffffff; }
  .cta-box p { color: #94a3b8; font-size: 15px; }
  .coverage {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
  }
  .coverage .label { font-size: 11px; color: var(--brand-accent); margin-bottom: 8px; letter-spacing: 0.05em; }
  .coverage .countries { font-size: 14px; line-height: 1.6; color: #cbd5e1; }

  /* Footer */
  footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
  }
  footer .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .foot-fine { font-size: 13px; color: var(--text-muted); }

  /* Responsive Design */
  @media (max-width: 900px) {
    .hero .wrap { grid-template-columns: 1fr; }
    .hero-photo { min-height: 280px; }
    .line-card { grid-template-columns: 1fr; gap: 16px; }
    .cta-box { grid-template-columns: 1fr; gap: 32px; }
    footer .wrap { flex-direction: column; gap: 16px; text-align: center; }
  }


  .hero-photo {
  position: relative;
  min-height: 360px;
  border-radius: 10px;
  overflow: hidden;
  background: #16384d;
  box-shadow: 0 20px 50px rgba(16, 32, 44, .13);
}

.hero-photo .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-photo .slide.active {
  opacity: 0.88;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 32, 44, .05), rgba(16, 32, 44, .58));
  pointer-events: none;
}

.hero-photo .photo-label {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  color: #fff;
  max-width: 300px;
}