/* ===== UFTC DESIGN SYSTEM =====
   Logo Colors: Forest Green #1B6B3A, Navy #1A2D5A, Crimson #C8202F, Cyan #00AECC
   Accent: Gold #D4AF37, White #F8FFFE
   Style: Glossy, premium, woven-textile motif
*/

:root {
  --green:   #1B6B3A;
  --green-l: #2ea855;
  --green-g: linear-gradient(135deg, #1B6B3A 0%, #2ea855 50%, #0d4522 100%);
  --navy:    #1A2D5A;
  --navy-l:  #2d4fa0;
  --navy-g:  linear-gradient(135deg, #1A2D5A 0%, #2d4fa0 50%, #0a1a38 100%);
  --red:     #C8202F;
  --red-l:   #e84a57;
  --red-g:   linear-gradient(135deg, #C8202F 0%, #e84a57 50%, #8b1520 100%);
  --cyan:    #00AECC;
  --cyan-l:  #00c8e8;
  --cyan-g:  linear-gradient(135deg, #00AECC 0%, #00c8e8 50%, #007a8f 100%);
  --gold:    #D4AF37;
  --gold-g:  linear-gradient(135deg, #D4AF37, #f0c830, #a88b20);
  --white:   #F8FFFE;
  --dark:    #0a0f1e;
  --dark2:   #111827;
  --glass:   rgba(255,255,255,0.08);
  --glass-b: rgba(255,255,255,0.15);
  --shadow:  0 25px 60px rgba(0,0,0,0.4);
  --radius:  20px;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ===== LOGO DIAMOND ===== */
.logo-diamond {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  transform: rotate(45deg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,174,204,0.5);
  flex-shrink: 0;
}
.logo-diamond.sm { width: 36px; height: 36px; border-radius: 6px; }
.logo-diamond .logo-text {
  transform: rotate(-45deg);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}
.logo-diamond.sm .logo-text { font-size: 9px; }

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 48px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
  background-color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.logo-img.sm {
  height: 36px;
  padding: 3px 8px;
  border-radius: 6px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,174,204,0.2);
  padding: 10px 0;
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-brand { display: flex; flex-direction: column; }
.brand-main {
  font-family: var(--font-accent);
  font-weight: 800; font-size: 18px;
  background: var(--cyan-g); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 0.15em;
}
.brand-sub { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

.nav-links { display: flex; gap: 8px; list-style: none; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--cyan); background: rgba(0,174,204,0.1); }

.btn-nav {
  background: var(--cyan-g);
  color: white; border: none; cursor: pointer;
  padding: 10px 24px; border-radius: 50px;
  font-family: var(--font-accent); font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0,174,204,0.4);
  transition: all 0.3s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,174,204,0.5); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-woven-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  transparent, transparent 18px, rgba(27,107,58,0.12) 18px, rgba(27,107,58,0.12) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(200,32,47,0.08) 18px, rgba(200,32,47,0.08) 20px),
    repeating-linear-gradient(0deg,   transparent, transparent 30px, rgba(26,45,90,0.15) 30px, rgba(26,45,90,0.15) 32px),
    repeating-linear-gradient(90deg,  transparent, transparent 30px, rgba(0,174,204,0.08) 30px, rgba(0,174,204,0.08) 32px);
  animation: woven-shift 20s linear infinite;
}
@keyframes woven-shift {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 100px 100px, -100px 100px, 0 60px, 60px 0; }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(27,107,58,0.25) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 40%, rgba(0,174,204,0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 100%, rgba(200,32,47,0.15) 0%, transparent 50%),
              linear-gradient(180deg, rgba(10,15,30,0.3) 0%, rgba(10,15,30,0.7) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 140px 40px 80px;
  max-width: 780px; padding-left: 80px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-accent); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.6); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 32px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.green { background: var(--green-l); box-shadow: 0 0 8px var(--green-l); animation: pulse 2s infinite; }
.dot.red   { background: var(--red-l);   box-shadow: 0 0 8px var(--red-l);   animation: pulse 2s 0.5s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:0.4; } }

.hero-title {
  font-family: var(--font-display);
  line-height: 1.05;
  margin-bottom: 28px;
}
.title-line-1 { display: block; font-size: clamp(48px, 6vw, 84px); font-weight: 400; color: white; }
.title-line-2 {
  display: block; font-size: clamp(48px, 6vw, 84px); font-weight: 700;
  background: var(--cyan-g); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.title-line-3 { display: block; font-size: clamp(40px, 5vw, 72px); font-weight: 900; color: white; opacity: 0.9; }

.hero-tagline {
  font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.7;
  margin-bottom: 48px; max-width: 520px;
}

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

.btn-primary {
  background: var(--green-g);
  color: white; border: none; cursor: pointer;
  padding: 16px 36px; border-radius: 50px;
  font-family: var(--font-accent); font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 30px rgba(27,107,58,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(27,107,58,0.6), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-primary.large { padding: 20px 48px; font-size: 16px; }
.btn-primary.full-width { width: 100%; justify-content: center; display: block; }

.btn-ghost {
  background: transparent;
  color: white; border: 1.5px solid rgba(255,255,255,0.3); cursor: pointer;
  padding: 16px 36px; border-radius: 50px;
  font-family: var(--font-accent); font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,174,204,0.08); }
.btn-ghost.sm { padding: 10px 24px; font-size: 13px; }

.hero-stats { display: flex; gap: 40px; align-items: center; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  background: var(--gold-g); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; right: 80px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop { 0%,100%{ transform: scaleY(1); opacity:0.8; } 50%{ transform: scaleY(0.5); opacity:0.3; } }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; padding: 80px 40px 0; max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-accent); font-size: 11px; font-weight: 700;
  color: var(--cyan); letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(0,174,204,0.3); padding: 6px 18px; border-radius: 50px;
  margin-bottom: 20px;
  background: rgba(0,174,204,0.05);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 700;
  color: white; margin-bottom: 16px; line-height: 1.15;
}
.section-desc { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ===== PROFILES SECTION ===== */
.profiles-section { padding-bottom: 100px; }

.cards-grid {
  max-width: 1280px; margin: 60px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ===== PROFILE CARDS ===== */
.glossy-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}
.glossy-card:hover { transform: translateY(-8px); }

.card-stripe-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(55deg, rgba(27,107,58,0.07) 0px, rgba(27,107,58,0.07) 3px, transparent 3px, transparent 20px),
    repeating-linear-gradient(-55deg, rgba(26,45,90,0.06) 0px, rgba(26,45,90,0.06) 3px, transparent 3px, transparent 20px);
  pointer-events: none;
}
.card-stripe-bg.red-stripe {
  background-image:
    repeating-linear-gradient(55deg, rgba(200,32,47,0.07) 0px, rgba(200,32,47,0.07) 3px, transparent 3px, transparent 20px),
    repeating-linear-gradient(-55deg, rgba(0,174,204,0.06) 0px, rgba(0,174,204,0.06) 3px, transparent 3px, transparent 20px);
}

.card-1 { background: linear-gradient(145deg, rgba(27,107,58,0.12), rgba(26,45,90,0.08), rgba(10,15,30,0.95)); }
.card-2 { background: linear-gradient(145deg, rgba(200,32,47,0.12), rgba(0,174,204,0.08), rgba(10,15,30,0.95)); }

.card-1:hover { box-shadow: 0 30px 80px rgba(27,107,58,0.35), 0 0 0 1px rgba(27,107,58,0.3); }
.card-2:hover { box-shadow: 0 30px 80px rgba(200,32,47,0.3), 0 0 0 1px rgba(200,32,47,0.25); }

/* Top glossy sheen */
.glossy-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.glossy-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.card-inner {
  position: relative; z-index: 1;
  padding: 48px 48px 52px;
  display: flex; flex-direction: column; gap: 20px;
}

.card-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-accent); font-size: 10px; font-weight: 700;
  color: var(--green-l); letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(46,168,85,0.3); padding: 5px 14px; border-radius: 50px;
  background: rgba(27,107,58,0.1);
  align-self: flex-start;
}
.card-badge.badge-red { color: var(--red-l); border-color: rgba(232,74,87,0.3); background: rgba(200,32,47,0.1); }

.card-icon-wrap { margin-bottom: 4px; }
.card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 36px; height: 36px; }
.green-icon { background: var(--green-g); box-shadow: 0 8px 25px rgba(27,107,58,0.5); }
.red-icon   { background: var(--red-g);   box-shadow: 0 8px 25px rgba(200,32,47,0.4); }

.card-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: white; line-height: 1.2;
}

.card-text { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; }

.card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 12px; font-weight: 500;
  color: var(--green-l); background: rgba(27,107,58,0.15);
  border: 1px solid rgba(27,107,58,0.25); border-radius: 50px;
  padding: 5px 14px;
}
.tag-red { color: var(--red-l); background: rgba(200,32,47,0.12); border-color: rgba(200,32,47,0.2); }

.card-footer-row {
  display: flex; gap: 32px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.card-meta { display: flex; flex-direction: column; gap: 4px; }
.meta-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold); }
.meta-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }

.card-actions { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }

.btn-details {
  display: inline-flex; align-items: center; gap: 10px;
  color: white; border: none; cursor: pointer;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-accent); font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-details::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-details:hover::before { left: 100%; }
.btn-details:hover { transform: translateY(-2px); }

/* Card specific button colors */
.card-1 .btn-details {
  background: var(--green-g);
  box-shadow: 0 8px 25px rgba(27,107,58,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.card-1 .btn-details:hover {
  box-shadow: 0 12px 35px rgba(27,107,58,0.55);
}

.card-2 .btn-details {
  background: var(--red-g);
  box-shadow: 0 8px 25px rgba(200,32,47,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.card-2 .btn-details:hover {
  box-shadow: 0 12px 35px rgba(200,32,47,0.55);
}
.btn-arrow { width: 18px; height: 18px; }

.card-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
  transition: opacity 0.4s;
}
.green-glow { width: 300px; height: 300px; bottom: -80px; right: -80px; background: rgba(27,107,58,0.25); opacity: 0; }
.red-glow   { width: 300px; height: 300px; bottom: -80px; right: -80px; background: rgba(200,32,47,0.2);  opacity: 0; }
.glossy-card:hover .card-glow { opacity: 1; }

/* ===== SOURCING STRIP ===== */
.sourcing-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1e45 50%, var(--dark) 100%);
  padding: 100px 40px;
  position: relative; overflow: hidden;
}
.sourcing-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,174,204,0.04) 0px, rgba(0,174,204,0.04) 1px, transparent 1px, transparent 30px);
}
.strip-content {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.strip-text .section-eyebrow { text-align: left; }
.strip-text h2 { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: white; margin-bottom: 16px; }
.strip-text p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 32px; }

.strip-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.strip-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.strip-item:hover {
  background: rgba(0,174,204,0.08);
  border-color: rgba(0,174,204,0.25);
  transform: translateY(-4px);
}
.strip-icon { font-size: 32px; }
.strip-item span { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; text-align: center; }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 40px; background: var(--dark2); }
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-left .section-eyebrow { text-align: left; }
.contact-left h2 { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: white; margin-bottom: 16px; }
.contact-left p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item.address-item { align-items: flex-start; }
.contact-item.address-item .ci-icon { margin-top: 3px; }
.ci-icon { font-size: 20px; }
.contact-item span:last-child { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.5; }
.contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--cyan); }


.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: white; font-family: var(--font-body); font-size: 15px;
  padding: 16px 20px;
  outline: none;
  transition: all 0.3s;
  appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus { border-color: var(--cyan); background: rgba(0,174,204,0.05); box-shadow: 0 0 0 3px rgba(0,174,204,0.1); }
.form-input option { background: var(--dark2); color: white; }
.form-textarea { min-height: 120px; resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 80px 40px 0; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.footer-brand .logo-diamond { margin-bottom: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 { font-family: var(--font-accent); font-size: 12px; font-weight: 700; color: var(--cyan); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-links p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-item.address-item {
  align-items: flex-start;
}
.footer-contact-item span {
  font-size: 13px;
  line-height: 1.5;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 13px;
  line-height: 1.5;
}
.footer-contact-item a:hover {
  color: var(--cyan);
}
.footer-icon {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  flex-shrink: 0;
}
.footer-contact-item.address-item .footer-icon {
  margin-top: 3px;
}


.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 28px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-stripe-bar {
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--cyan) 33%, var(--red) 66%, var(--navy) 100%);
}



/* ===== LANDING OVERLAY ===== */
.landing-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
}
.landing-overlay.active { opacity: 1; pointer-events: all; }

.landing-page {
  max-width: 1100px; margin: 40px auto; border-radius: 28px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 60px 120px rgba(0,0,0,0.8);
  overflow: hidden;
  transform: translateY(40px);
  transition: transform 0.4s ease;
}
.landing-overlay.active .landing-page { transform: translateY(0); }

.landing-close {
  position: sticky; top: 0; float: right; margin: 20px 20px 0 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; cursor: pointer; color: white;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.landing-close:hover { background: rgba(200,32,47,0.4); }
.landing-close svg { width: 20px; height: 20px; }

/* LP HERO */
.lp-hero {
  position: relative; min-height: 480px;
  background: linear-gradient(135deg, rgba(26,45,90,0.9) 0%, rgba(27,107,58,0.15) 50%, rgba(200,32,47,0.1) 100%);
  display: flex; align-items: center;
  padding: 80px 64px 64px; gap: 60px;
  overflow: hidden; clear: both;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,174,204,0.05) 0, rgba(0,174,204,0.05) 2px, transparent 2px, transparent 24px),
                    repeating-linear-gradient(-45deg, rgba(27,107,58,0.05) 0, rgba(27,107,58,0.05) 2px, transparent 2px, transparent 24px);
}
.lp-hero-content { position: relative; z-index: 1; flex: 1; }
.lp-badge {
  display: inline-block;
  font-family: var(--font-accent); font-size: 11px; font-weight: 700;
  color: var(--red-l); letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(232,74,87,0.3); padding: 6px 18px; border-radius: 50px;
  background: rgba(200,32,47,0.1); margin-bottom: 24px;
}
.lp-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  color: white; line-height: 1.1; margin-bottom: 20px;
}
.lp-subtitle { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.lp-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* LP Globe */
.lp-hero-visual { position: relative; z-index: 1; width: 240px; height: 240px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.lp-globe { position: relative; width: 200px; height: 200px; }
.globe-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid; animation: globe-spin linear infinite;
}
.r1 { inset: 20px; border-color: rgba(0,174,204,0.5); animation-duration: 6s; }
.r2 { inset: 40px; border-color: rgba(27,107,58,0.5); animation-duration: 9s; transform: rotateX(60deg); }
.r3 { inset: 0; border-color: rgba(200,32,47,0.3); animation-duration: 12s; animation-direction: reverse; }
@keyframes globe-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.globe-core {
  position: absolute; inset: 60px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(0,174,204,0.5);
}
.globe-core span { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: white; }

/* LP Sections */
.lp-section { padding: 72px 64px; }
.lp-dark-section {
  background: linear-gradient(135deg, rgba(26,45,90,0.4), rgba(10,15,30,0.8));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-section-title {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  color: white; margin-bottom: 48px; text-align: center;
}
.lp-section-title.light { color: white; }

.lp-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-service-card {
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: all 0.3s;
}
.lp-service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.lp-service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.lp-service-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: white; margin-bottom: 10px; }
.lp-service-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* LP Process */
.lp-process { display: flex; align-items: flex-start; gap: 0; justify-content: center; flex-wrap: wrap; }
.lp-process-step {
  flex: 1; min-width: 160px; text-align: center; padding: 0 16px;
}
.step-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 900;
  color: transparent; -webkit-text-stroke: 2px rgba(0,174,204,0.4);
  margin-bottom: 12px; display: block;
}
.lp-process-step h4 { font-size: 16px; font-weight: 600; color: white; margin-bottom: 8px; }
.lp-process-step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.process-arrow { font-size: 24px; color: rgba(0,174,204,0.4); padding-top: 20px; flex-shrink: 0; }

/* LP Stats */
.lp-stats-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 50%, var(--red) 100%);
  padding: 60px 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
  position: relative; overflow: hidden;
}
.lp-stats-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 20px);
}
.lp-stat { position: relative; z-index: 1; }
.lp-stat-num { display: block; font-family: var(--font-display); font-size: 48px; font-weight: 900; color: white; }
.lp-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; display: block; }

/* LP CTA */
.lp-cta-section { padding: 80px 64px; text-align: center; }
.lp-cta-section h2 { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: white; margin-bottom: 16px; }
.lp-cta-section p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }

/* LP Footer */
.lp-footer {
  padding: 32px 64px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.lp-footer-logo { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.6); font-size: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; }
  .strip-content { grid-template-columns: 1fr; gap: 48px; }
  .strip-icons { grid-template-columns: repeat(5, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lp-hero { flex-direction: column; padding: 80px 32px 48px; }
  .lp-hero-visual { display: none; }
  .lp-services-grid { grid-template-columns: 1fr 1fr; }
  .lp-stats-banner { grid-template-columns: 1fr 1fr; }
  .lp-process { gap: 12px; }
  .process-arrow { display: none; }
  .lp-section { padding: 48px 32px; }
  .lp-footer { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 120px 24px 60px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
  .cards-grid { padding: 0 20px; }
  .card-inner { padding: 32px 28px 36px; }
  .strip-icons { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .lp-services-grid { grid-template-columns: 1fr; }
  .lp-stats-banner { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
}

/* ===== SAMPLE SWATCHES HOVER ZOOM ===== */
.swatch-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.swatch-card:hover {
  border-color: rgba(0, 174, 204, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.swatch-img {
  height: 120px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.swatch-card:hover .swatch-img {
  transform: scale(1.12);
  opacity: 1;
}

/* ===== FACTORY TABLE & CERTIFICATE BADGES ===== */
.lp-table-wrapper {
  overflow-x: auto;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
}
.lp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.lp-table th {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}
.lp-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.lp-table tr:last-child td {
  border-bottom: none;
}
.badge-cert {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-right: 6px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-cert.bsci { background: rgba(46, 168, 85, 0.12); color: #2ea855; border: 1px solid rgba(46, 168, 85, 0.3); }
.badge-cert.sedex { background: rgba(0, 174, 204, 0.12); color: #00c8e8; border: 1px solid rgba(0, 174, 204, 0.3); }
.badge-cert.accord { background: rgba(200, 32, 47, 0.12); color: #e84a57; border: 1px solid rgba(200, 32, 47, 0.3); }
.badge-cert.oeko { background: rgba(212, 175, 55, 0.12); color: #f0c830; border: 1px solid rgba(212, 175, 55, 0.3); }

.capacity-badge {
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  font-size: 13.5px;
}

/* Gallery responsiveness rules */
@media (max-width: 900px) {
  .gallery-container > div {
    grid-template-columns: 1fr !important;
  }
  .gallery-container > div > div:first-child {
    border-right: none !important;
    border-bottom: 4px solid #060a14 !important;
    padding: 20px !important;
  }
  .gallery-container > div > div:last-child {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .gallery-container > div > div:last-child {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.cert-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  animation: floatCert 6s ease-in-out infinite;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.cert-card:hover {
  transform: translateY(-10px) scale(1.05) !important;
  box-shadow: 0 15px 35px rgba(0, 174, 204, 0.3);
  background: rgba(255,255,255,0.08);
  border-color: rgba(0, 174, 204, 0.4);
}
.cert-card img {
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.9) grayscale(20%);
}
.cert-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) grayscale(0%);
}
@keyframes floatCert {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.cert-card:nth-child(1) { animation-delay: 0s; }
.cert-card:nth-child(2) { animation-delay: 1.5s; }
.cert-card:nth-child(3) { animation-delay: 3s; }
.cert-card:nth-child(4) { animation-delay: 4.5s; }
