/* ===========================
   HOME AND DECOR THAILAND
   Premium Stylesheet v2.0
   =========================== */

/* ========== CSS VARIABLES ========== */
:root {
  /* Brand Colors */
  --color-primary: #0058CD;
  --color-primary-dark: #003e99;
  --color-primary-light: #1a6de0;
  --color-primary-glow: rgba(0, 88, 205, 0.3);
  --color-secondary: #3793CE;
  --color-accent: #03FFFF;
  --color-accent-dim: rgba(3, 255, 255, 0.15);
  --color-white: #FFFFFF;

  /* Extended Palette */
  --color-dark: #0a1628;
  --color-dark-2: #0d1f3c;
  --color-dark-3: #091525;
  --color-surface: #f0f6ff;
  --color-surface-2: #e8f2ff;
  --color-text: #1a2a4a;
  --color-text-muted: #5a7499;
  --color-border: rgba(0, 88, 205, 0.12);
  --color-green: #16a34a;
  --color-green-light: #dcfce7;

  /* Typography */
  --font-primary: 'Noto Sans Thai', 'Outfit', sans-serif;
  --font-secondary: 'Outfit', 'Noto Sans Thai', sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --header-height: 80px;

  /* Spacing */
  --section-padding: 100px 0;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 88, 205, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 88, 205, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 88, 205, 0.18);
  --shadow-xl: 0 32px 80px rgba(0, 88, 205, 0.25);
  --shadow-glow: 0 0 40px rgba(0, 88, 205, 0.4);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.section, section[id] { padding: var(--section-padding); scroll-margin-top: 90px; }

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-cyan { color: var(--color-accent); }

/* ========== NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(3, 255, 255, 0.1);
}

.ceo__alliances {
  margin-top: 64px;
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.alliances-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 64px auto 0;
  padding: 60px 30px;
}

.alliances__main-title {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 40px;
  line-height: 1.2;
}

.alliances__logo-sdg {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.alliances__logo-rep {
  width: 250px;
  max-width: 100%;
  height: auto;
}

/* FTI Membership Badge Block */
.alliances__fti-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #f0f6ff, #e8f2ff);
  border: 1.5px solid rgba(0, 88, 205, 0.2);
  border-radius: 16px;
  padding: 20px 28px;
  margin: 0 auto 32px;
  max-width: 480px;
  box-shadow: 0 4px 20px rgba(0, 88, 205, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.alliances__fti-block:hover {
  box-shadow: 0 8px 32px rgba(0, 88, 205, 0.15);
  transform: translateY(-2px);
}

.alliances__fti-logo {
  width: 72px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.alliances__fti-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alliances__fti-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.alliances__fti-sub {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}


.alliances__quote {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 50px;
}

.alliances__photo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  width: 100%;
}

.alliances__photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.alliances__photo-caption {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.5;
}

.alliances__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.alliances__grid-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.alliances__sub-title {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.alliances__text {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.alliances__divider {
  width: 100px;
  height: 2px;
  background: var(--color-primary);
  border: none;
  margin: 10px 0 50px;
}

.alliances__list-text {
  font-size: 1.2rem;
  color: var(--color-dark);
  line-height: 2;
  margin-bottom: 60px;
}

.alliances__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background-color: white;
  padding: 4px;
  border: 2px solid rgba(3, 255, 255, 0.3);
  transition: var(--transition);
}

.nav__logo:hover .nav__logo-img {
  border-color: var(--color-accent);
  box-shadow: 0 0 16px rgba(3, 255, 255, 0.4);
}

.nav__logo-title {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1.05rem;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav__logo-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav__link:hover,
.nav__link.active {
  color: white;
  background: rgba(255,255,255,0.08);
}

/* Dropdown styling */
.nav__item--dropdown {
  position: relative;
}

.nav__arrow {
  font-size: 0.8em;
  margin-left: 2px;
  opacity: 0.7;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 100;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav__dropdown li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding-left: 25px;
}

.nav__link--recycool {
  color: var(--color-accent);
  font-weight: 700;
}

.nav__link--recycool:hover {
  background: var(--color-accent-dim);
  color: var(--color-accent);
}

.nav__link--cta {
  background: var(--color-primary);
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}

.nav__link--cta:hover {
  background: var(--color-primary-light);
  box-shadow: 0 4px 20px var(--color-primary-glow);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  outline: none;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-primary-glow);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary));
}

.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn--recycool {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
}

.btn--recycool:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
}

.btn--full { width: 100%; justify-content: center; }

/* ========== SECTION HEADER ========== */
.section__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  background: linear-gradient(135deg, rgba(3, 255, 255, 0.12), rgba(0, 88, 205, 0.1));
  border: 1px solid rgba(3, 255, 255, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(3, 255, 255, 0.1);
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========== HERO BANNER SECTION ========== */
.hero-banner-section {
  padding-top: var(--header-height);
  background: #001440;
}

.hero-banner-img-wrap {
  width: 100%;
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* CTA strip below banner */
.hero-banner-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 24px;
  background: #001852;
  flex-wrap: wrap;
}

.hero-btn--dark {
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}
.hero-btn--dark:hover {
  background: rgba(255,255,255,0.1) !important;
}

/* Stats in CTA strip */
.hero-banner-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 8px;
}

.hero-banner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-banner-stat .stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #38BDF8;
  line-height: 1;
}
.hero-banner-stat .stat-plus {
  color: #38BDF8;
  font-weight: 900;
  font-size: 0.9rem;
  vertical-align: super;
}
.hero-banner-stat .stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.hero-banner-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-banner-cta {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  .hero-banner-stats {
    margin-left: 0;
    gap: 12px;
  }
  .hero-banner-stat .stat-number { font-size: 1.2rem; }
}

/* ========== HERO2 — 3-COLUMN (legacy) ========== */

.hero2 {
  position: relative;
  background: #fff;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Top grid */
.hero2__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  min-height: 480px;
  border-bottom: 4px solid #0058CD;
}

/* Photo columns */
.hero2__photo-col {
  display: flex;
  flex-direction: column;
}

.hero2__photo-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 200px;
}

.hero2__photo-wrap + .hero2__photo-wrap {
  border-top: 3px solid #fff;
}

.hero2__photo-wrap--green {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.hero2__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.hero2__photo-wrap:hover .hero2__photo {
  transform: scale(1.04);
}

.hero2__photo--contain {
  object-fit: contain;
  padding: 12px;
}

.hero2__photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,22,80,0.82) 0%, transparent 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 20px 12px 8px;
  text-align: center;
  letter-spacing: 0.03em;
}

.hero2__photo-label--green {
  background: linear-gradient(0deg, rgba(20,100,20,0.75) 0%, transparent 100%);
}

/* Center column */
.hero2__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px 20px;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 50%, #f0f6ff 100%);
  border-left: 3px solid #e0eaff;
  border-right: 3px solid #e0eaff;
  text-align: center;
  position: relative;
}

/* Decorative diagonal waves on center column */
.hero2__center::before,
.hero2__center::after {
  content: '';
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(135deg, #0058CD 25%, transparent 25%) -10px 0,
              linear-gradient(225deg, #0058CD 25%, transparent 25%) -10px 0,
              linear-gradient(315deg, #0058CD 25%, transparent 25%),
              linear-gradient(45deg, #0058CD 25%, transparent 25%);
  background-size: 20px 20px;
  background-color: transparent;
  opacity: 0.05;
  pointer-events: none;
}

.hero2__center::before { left: 0; }
.hero2__center::after { right: 0; }

/* Logo */
.hero2__logo-wrap {
  margin-bottom: 8px;
}

.hero2__logo {
  width: clamp(80px, 12vw, 120px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,88,205,0.2));
}

/* Company name */
.hero2__company-name {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 900;
  color: #0038A8;
  line-height: 1.15;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero2__company-sub {
  display: block;
  font-size: clamp(0.85rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: #0058CD;
}

/* Slogan */
.hero2__slogan {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #333;
  margin: 10px 0 16px;
  font-style: italic;
}

.hero2__quote {
  color: #0058CD;
  font-size: 1.4em;
  font-style: normal;
  font-weight: 900;
  line-height: 0;
  vertical-align: -4px;
  margin: 0 2px;
}

/* Service pills */
.hero2__services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.hero2__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: #fff;
  border: 1.5px solid #c0d4f8;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0038A8;
  box-shadow: 0 2px 6px rgba(0,58,168,0.08);
  transition: all 0.2s;
  cursor: default;
}

.hero2__pill:hover {
  background: #0058CD;
  color: #fff;
  border-color: #0058CD;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,88,205,0.25);
}

/* Action buttons */
.hero2__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

/* Stats bar */
.hero2__stats {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(0,58,168,0.05);
  border-radius: 12px;
  border: 1px solid rgba(0,88,205,0.12);
}

.hero2__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero2__stat .stat-number {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: #0058CD;
  line-height: 1;
}

.hero2__stat .stat-plus {
  color: #0058CD;
  font-weight: 900;
  font-size: 1rem;
  vertical-align: super;
}

.hero2__stat .stat-label {
  font-size: 0.7rem;
  color: #555;
  font-weight: 600;
  text-align: center;
}

.hero2__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(0,88,205,0.2);
  flex-shrink: 0;
}

/* Contact strip */
.hero2__contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #0038A8;
  padding: 0;
}

.hero2__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.hero2__contact-item:hover {
  background: rgba(255,255,255,0.12);
  color: #7dd3fc;
}

.hero2__contact-icon {
  font-size: 1.1rem;
}

.hero2__contact-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero2 .hero__scroll-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px;
  background: #fff;
}

.hero2 .scroll-mouse { border-color: #0058CD; }
.hero2 .scroll-dot { background: #0058CD; }
.hero2 .scroll-text { color: #0058CD; }

/* ========== HERO2 RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero2__grid {
    grid-template-columns: 1fr 1.4fr 1fr;
    min-height: 380px;
  }
  .hero2__company-name { font-size: 1.5rem; }
  .hero2__center { padding: 20px 16px 16px; }
}

@media (max-width: 768px) {
  .hero2__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* On mobile: hide photo columns, show only center */
  .hero2__photo-col {
    display: none;
  }

  .hero2__center {
    border-left: none;
    border-right: none;
    padding: 24px 20px 20px;
    background: linear-gradient(180deg, #e8f0fe 0%, #fff 100%);
  }

  .hero2__contact-strip {
    flex-direction: column;
    gap: 0;
  }

  .hero2__contact-sep {
    width: 60%;
    height: 1px;
    background: rgba(255,255,255,0.2);
  }

  .hero2__contact-item {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .hero2__stats {
    gap: 10px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero2__pill { font-size: 0.72rem; padding: 5px 10px; }
  .hero2__company-name { font-size: 1.2rem; }
}

/* ========== HERO SECTION (OLD - kept for CSS refs) ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark-3);
}
/* ========== HERO WRAP (banner block image) ========== */
.hero-wrap {
  position: relative;
  background: #001440;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-wrap__img-box {
  width: 100%;
  line-height: 0;
  display: block;
}

.hero-wrap__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Bottom bar overlaid above the image */
.hero-wrap__bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 40px 18px;
  background: linear-gradient(0deg, rgba(0,5,30,0.88) 0%, rgba(0,10,50,0.6) 100%);
  flex-wrap: wrap;
}

.hero-wrap__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-btn--white {
  border-color: rgba(255,255,255,0.6) !important;
  color: #fff !important;
}
.hero-btn--white:hover {
  background: rgba(255,255,255,0.12) !important;
}

/* Stats */
.hero-wrap__stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-wrap__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.hero-wrap__stat .stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: #38BDF8;
  line-height: 1;
}

.hero-wrap__stat .stat-plus {
  color: #38BDF8;
  font-weight: 900;
  font-size: 0.9rem;
  vertical-align: super;
}

.hero-wrap__stat .stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-align: center;
}

.hero-wrap__sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-wrap__bar {
    flex-direction: column;
    padding: 14px 20px 16px;
    gap: 16px;
  }
  .hero-wrap__actions {
    width: 100%;
    flex-direction: column;
  }
  .hero-wrap__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-wrap__stats { gap: 10px; width: 100%; justify-content: space-between; }
  .hero-wrap__stat .stat-number { font-size: 1.3rem; }
}

/* ========== HERO--BANNER & BOTTOM-BAR (legacy cleanup) ========== */
.hero--banner { min-height: 0; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1) saturate(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

/* Animated particles */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent), transparent);
  animation: float-particle 8s ease-in-out infinite;
  opacity: 0.15;
}

.particle:nth-child(1) { width: 300px; height: 300px; top: -100px; left: -100px; animation-delay: 0s; }
.particle:nth-child(2) { width: 200px; height: 200px; top: 50%; right: -80px; animation-delay: 2s; }
.particle:nth-child(3) { width: 150px; height: 150px; bottom: -50px; left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { width: 100px; height: 100px; top: 20%; left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { width: 250px; height: 250px; bottom: 10%; right: 20%; animation-delay: 3s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.25; }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 48px;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 48px;
}

.hero__left {
  flex: 1;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(3, 255, 255, 0.08);
  border: 1px solid rgba(3, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fade-in-up 0.6s ease forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fade-in-up 0.7s ease 0.1s forwards;
  opacity: 0;
}

.hero__title-highlight {
  background: linear-gradient(135deg, var(--color-accent), #3793CE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fade-in-up 0.7s ease 0.2s forwards;
  opacity: 0;
}

.hero__subtitle strong { color: rgba(255,255,255,0.95); }

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fade-in-up 0.7s ease 0.3s forwards;
  opacity: 0;
}

/* Hero Logo - true transparent PNG + white stroke via drop-shadow */
.hero__logo-stroke {
  width: clamp(220px, 32vw, 320px);
  height: auto;
  margin-bottom: 16px;
  display: block;
  filter:
    drop-shadow(0 0 2px white)
    drop-shadow(0 0 2px white)
    drop-shadow(0 0 4px rgba(255,255,255,0.9))
    drop-shadow(0 6px 24px rgba(0,0,0,0.5));
  animation: fade-in-up 0.7s ease 0.2s forwards;
  opacity: 0;
}

/* FTI Badge in Hero */
.hero__fti-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  animation: fade-in-up 0.7s ease 0.35s forwards;
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 4px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero__fti-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.12),
    0 8px 32px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.fti-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.3)) brightness(1.1);
}

.fti-text {
  display: flex;
  flex-direction: column;
}

.fti-text strong {
  font-size: 0.9rem;
  color: white;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.fti-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fade-in-up 0.7s ease 0.4s forwards;
  opacity: 0;
}

.hero__stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-secondary);
  line-height: 1;
}

.stat-plus { color: var(--color-accent); font-weight: 700; font-size: 1.5rem; }

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 400;
}

.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* Hero Right: Brand Card */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  animation: fade-in-right 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero__brand-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-width: 200px;
  box-shadow: none;
}

.hero__recycool-logo {
  width: 180px;
  height: auto;
  background: white;
  padding: 16px 20px;
  border-radius: 20px;
  display: block;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.2);
  filter: none;
}

.hero__brand-divider {
  display: none;
}

.hero__sdg-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  padding: 6px;
  border: none;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.2);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========== SERVICES TICKER ========== */
.services-ticker {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(3, 255, 255, 0.2);
  border-bottom: 1px solid rgba(3, 255, 255, 0.2);
}

.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker__track span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SERVICES SECTION ========== */
.services { background: var(--color-surface); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Service Card */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 88, 205, 0.3);
}

.service-card--featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md), 0 0 0 2px rgba(0, 88, 205, 0.1);
}

.service-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-card__img {
  transform: scale(1.07);
}

.service-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 88, 205, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.service-card__badge--green {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.service-card__body {
  padding: 24px;
}

.service-card__icon-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.service-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

.service-subtitle {
  font-size: 0.8em;
  color: var(--color-secondary);
  font-weight: 500;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card__list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card__list li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card__list li::before { display: none; }

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  width: 100%;
}

.service-card__cta:hover {
  color: var(--color-accent);
  gap: 12px;
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio {
  background: var(--color-surface);
  padding: 80px 0;
}

.portfolio__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.portfolio__tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: white;
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.portfolio__tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.portfolio__tab.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px var(--color-primary-glow);
}

.portfolio__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.portfolio__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio__item:hover .portfolio__img {
  transform: scale(1.08);
}

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 12, 30, 0.9) 0%, rgba(0, 12, 30, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__item-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio__item:hover .portfolio__item-title {
  transform: translateY(0);
}

.portfolio__item-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.05s;
}

.portfolio__item:hover .portfolio__item-desc {
  transform: translateY(0);
}

/* ========== RECYCOOL SECTION ========== */
.recycool {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
  color: white;
}

.recycool__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 88, 205, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.recycool__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.recycool__logo-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.recycool__brand-logo {
  width: 200px;
  height: auto;
  background: white;
  padding: 12px 18px;
  border-radius: 16px;
  filter: none;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.2);
}

.recycool__brand-sdg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  padding: 6px;
  border: none;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.2);
}

.recycool__bcta {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
  background: white;
  padding: 6px;
  border: none;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.2);
}

.recycool__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.recycool__title-sub {
  background: linear-gradient(135deg, var(--color-accent), #3793CE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.recycool__tagline {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.9;
}

.recycool__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

.recycool__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.recycool__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.recycool__feature strong {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.recycool__feature p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.recycool__actions { margin-top: 8px; }

/* Recycool Visual */
.recycool__visual {
  position: relative;
  width: 100%;
}

/* ===== CATALOG SHOWCASE ===== */
.recycool__catalog-showcase {
  position: relative;
  width: 100%;
}

/* Floating accent chips */
.rc-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  z-index: 10;
  animation: float-chip 4s ease-in-out infinite;
  white-space: nowrap;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.rc-chip--1 {
  top: -14px;
  left: 12px;
  background: rgba(3, 255, 255, 0.15);
  border: 1px solid rgba(3, 255, 255, 0.45);
  color: var(--color-accent);
  animation-delay: 0s;
}

.rc-chip--2 {
  top: -14px;
  right: 12px;
  background: rgba(22, 163, 74, 0.18);
  border: 1px solid rgba(22, 163, 74, 0.5);
  color: #4ade80;
  animation-delay: 1s;
}

@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Main frame */
.recycool__catalog-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.55),
    0 0 0 1px rgba(3, 255, 255, 0.15),
    0 0 40px rgba(3, 255, 255, 0.08);
  margin-top: 12px;
}

.recycool__catalog-frame:hover {
  transform: translateY(-6px) perspective(1000px) rotateX(1deg);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(3, 255, 255, 0.35),
    0 0 60px rgba(3, 255, 255, 0.18);
}

/* Animated glow border */
.recycool__catalog-border-glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    var(--color-accent),
    var(--color-primary),
    #22c55e,
    var(--color-accent)
  );
  z-index: 0;
  animation: spin-border 6s linear infinite;
  opacity: 0.6;
}

@keyframes spin-border {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* White inset so the spinning border shows only as a thin ring */
.recycool__catalog-frame::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  background: var(--color-dark-3);
  z-index: 1;
}

.recycool__catalog-full {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.recycool__catalog-frame:hover .recycool__catalog-full {
  transform: scale(1.025);
}

/* Corner decorators */
.rc-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--color-accent);
  border-style: solid;
  z-index: 3;
}
.rc-corner--tl { top: 8px; left: 8px;   border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.rc-corner--tr { top: 8px; right: 8px;  border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.rc-corner--bl { bottom: 8px; left: 8px;  border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.rc-corner--br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* Bottom overlay */
.recycool__catalog-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0,12,30,0.88) 0%, transparent 100%);
  display: flex;
  justify-content: center;
  z-index: 3;
}

.rc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(3, 255, 255, 0.12);
  border: 1px solid rgba(3, 255, 255, 0.35);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  letter-spacing: 0.03em;
}

/* Stats row */
.recycool__catalog-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  flex-wrap: wrap;
}

.rc-stat {
  text-align: center;
  padding: 0 20px;
  flex: 1;
  min-width: 70px;
}

.rc-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.rc-stat span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}

.rc-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===== RecyCOOL Product Showcase ===== */
.recycool__product-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.recycool__product-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(3, 255, 255, 0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 32px rgba(3, 255, 255, 0.1);
}

.recycool__product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

.recycool__product-main:hover .recycool__product-img {
  transform: scale(1.04);
}

.recycool__product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,22,50,0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.recycool__product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(3, 255, 255, 0.15);
  border: 1px solid rgba(3, 255, 255, 0.4);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
}

.recycool__product-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.recycool__badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.recycool__badge-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(3, 255, 255, 0.2);
}

.recycool__badge-card--highlight {
  border-color: rgba(3, 255, 255, 0.25);
  background: rgba(3, 255, 255, 0.05);
}

.recycool__badge-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.recycool__badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.recycool__badge-text span {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ========== ABOUT/WHY US SECTION ========== */
.about { background: white; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.why-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.why-card:hover::before { opacity: 0.04; }

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 88, 205, 0.25);
}

.why-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-surface), rgba(0, 88, 205, 0.05));
}

.why-card > * { position: relative; z-index: 1; }

.why-card__icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

.why-card__icon { font-size: 1.5rem; }

.why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Stats Banner */
.about__stats-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--color-dark), var(--color-dark-2));
  border-radius: var(--radius-xl);
  padding: 40px;
  flex-wrap: wrap;
}

.stat-banner-item {
  text-align: center;
  padding: 0 48px;
  flex: 1;
  min-width: 140px;
}

.stat-banner-num {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-banner-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.stat-banner-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ========== EXECUTIVE SECTION ========== */
.executive { background: var(--color-surface); }

.executive__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.executive__team-graphic {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.executive__team-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

/* CEO Card */
.executive__ceo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  padding: 40px;
  margin-bottom: 48px;
}

.ceo__profile-wrap {
  flex-shrink: 0;
  width: 180px;
  height: 220px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

.ceo__profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  display: block;
  transform: scale(1.6);
  transform-origin: top center;
}

.ceo__profile-glow {
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  background: linear-gradient(135deg, var(--color-primary-glow), transparent);
  z-index: -1;
}

.ceo__body {
  /* No special flex needed here */
}

.ceo__header {
  margin-bottom: 20px;
}

.ceo__name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.ceo__name-en {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-family: var(--font-secondary);
}

.ceo__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.ceo__subtitle {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 20px;
}

.ceo__quote {
  background: linear-gradient(135deg, var(--color-surface), var(--color-surface-2));
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-style: italic;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.ceo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.ceo__col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.ceo__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ceo__list li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-left: 12px;
  border-left: 2px solid var(--color-secondary);
}

.ceo__list strong { color: var(--color-text); }

/* Team Grid */
.team__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 32px;
  text-align: center;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* 3-column professional team grid with flex centering */
.team__grid--3col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.team__grid--3col > .team__card {
  width: calc(33.333% - 19px);
  min-width: 220px;
}

.team__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

/* Professional team card variant */
.team__card--pro {
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.team__card--pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: var(--transition);
}

.team__card--pro:hover::before {
  opacity: 1;
}

.team__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(0, 88, 205, 0.15),
    0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(0, 88, 205, 0.25);
}

.team__avatar-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--color-primary);
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

/* Larger avatar for professional card */
.team__avatar-wrap--lg {
  width: 180px;
  height: 180px;
  border-width: 4px;
  box-shadow:
    0 0 0 6px rgba(0, 88, 205, 0.1),
    0 8px 32px var(--color-primary-glow);
  margin-bottom: 24px;
}

.team__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.team__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

/* Team member role badge */
.team__badge {
  display: inline-block;
  padding: 3px 12px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
}

.team__role {
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}

.team__role-en {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-family: var(--font-secondary);
  margin-bottom: 6px;
}

.team__detail {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ========== FAQ SECTION ========== */
.faq { background: white; }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  transition: var(--transition);
}

.faq__item:hover {
  border-color: rgba(0, 88, 205, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  transition: var(--transition);
}

.faq__question:hover { color: var(--color-primary); }

.faq__question[aria-expanded="true"] {
  color: var(--color-primary);
  background: rgba(0, 88, 205, 0.03);
}

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition);
  width: 24px;
  text-align: center;
  line-height: 1;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--color-border);
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  padding-top: 16px;
}

/* ========== CONTACT SECTION ========== */
.contact {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.contact__bg-glow {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 88, 205, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.contact__logo-wrap {
  margin-bottom: 20px;
}

.contact__logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
}

.contact__company {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
  line-height: 1.4;
}

.contact__tagline {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  font-style: normal;
}

.contact__detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact__detail-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact__detail-item p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
}

.contact__link {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.contact__link:hover { color: var(--color-accent); }

.contact__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn--phone {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

.social-btn--phone:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

.social-btn--line {
  background: #06c755;
  color: white;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
}

.social-btn--line:hover {
  background: #05b04c;
  transform: translateY(-2px);
}

.social-btn--tiktok {
  background: #010101;
  color: white;
  box-shadow: 0 4px 16px rgba(1,1,1,0.25);
}

.social-btn--tiktok:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
}

.social-btn--youtube {
  background: #ff0000;
  color: white;
  box-shadow: 0 4px 16px rgba(255,0,0,0.28);
}

.social-btn--youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.social-btn--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(220,39,67,0.3);
}

.social-btn--instagram:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* Social icon grid (footer) */
.social-icon-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-icon-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.social-icon-link--fb   { background: #1877f2; }
.social-icon-link--line { background: #06c755; }
.social-icon-link--tt   { background: #010101; }
.social-icon-link--yt   { background: #ff0000; }
.social-icon-link--ig   { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* Contact Form */
.contact__form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
}

.form__group {
  margin-bottom: 18px;
}

.form__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.required { color: var(--color-primary); }

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text);
  background: white;
  transition: var(--transition);
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-accent-dim);
}

.form__textarea { resize: vertical; min-height: 100px; }

.form__note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Map */
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
}

.map__link-wrap {
  padding: 16px;
  background: white;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.map__open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.map__open-btn:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}

.footer__wave {
  line-height: 0;
  display: block;
}

.footer__wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer__top {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
  min-width: 260px;
}

.footer__logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.footer__company-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  font-family: var(--font-secondary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer__website {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__nav {
  display: flex;
  gap: 48px;
  flex: 2;
  flex-wrap: wrap;
}

.footer__nav-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
}

.footer__nav-col a:hover { color: var(--color-accent); }

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  animation: float-btn 3s ease-in-out infinite;
}

.floating-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.floating-btn--phone {
  background: var(--color-primary);
  animation-delay: 0s;
}

.floating-btn--line {
  background: #06c755;
  animation-delay: 0.5s;
}

@keyframes float-btn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

/* ========== ANIMATIONS ========== */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-right {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .recycool__inner { grid-template-columns: 1fr; gap: 48px; }
  .recycool__visual { justify-content: center; }
  .executive__layout { grid-template-columns: 1fr; gap: 40px; }
  .executive__ceo-card { flex-direction: column; align-items: center; text-align: center; }
  .ceo__profile-wrap { width: 180px; margin: 0 auto; }
  .ceo__body { padding: 0; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --header-height: 70px;
  }

  .nav__menu {
    display: none;
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 32px 24px 100px 24px;
    overflow-y: auto;
  }

  .nav__menu.open { display: flex; }

  .nav__link {
    font-size: 1.1rem;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }

  /* Mobile Dropdown */
  .nav__item--dropdown { width: 100%; text-align: center; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0;
    min-width: 100%;
    display: none;
  }
  .nav__item--dropdown.open .nav__dropdown { display: block; }
  .nav__dropdown li a {
    padding: 8px 24px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
  }
  .nav__dropdown li a:hover {
    padding-left: 24px;
    color: var(--color-accent);
    background: transparent;
  }

  .nav__toggle { display: flex; }

  .nav__toggle.open .hamburger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open .hamburger:nth-child(2) { opacity: 0; }
  .nav__toggle.open .hamburger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__right { order: -1; }
  .hero__brand-card { padding: 20px; }
  .hero__recycool-logo { width: 140px; }

  .services__grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }

  .recycool__features { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; }

  .about__stats-banner {
    gap: 24px;
    flex-wrap: wrap;
    padding: 32px 24px;
  }

  .stat-banner-item { min-width: 120px; padding: 0 16px; }
  .stat-banner-divider { display: none; }

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__nav { gap: 24px; }

  .ceo__grid { grid-template-columns: 1fr; }
  .executive__ceo-card { padding: 24px; }

  .recycool__visual { flex-direction: column; }
  .recycool__catalog-card { width: 100%; margin-top: 16px; }
  .recycool__catalog-img { height: 160px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__stat-divider { width: 60px; height: 1px; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
