/* ===== CSS VARIABLES — LOGO MATCHED ===== */
:root {
  --blue: #0F2B6B;       /* Logo navy blue */
  --green: #49A942;      /* Logo leaf green */
  --cyan: #1AA6A6;       /* Logo teal */
  --gold: #F5A623;       /* Logo sun/arc gold */
  --bg: #F4F8F4;
  --white: #FFFFFF;
  --dark: #1A2744;
  --gray: #6B7280;
  --light-gray: #E5E7EB;
  --card-bg: rgba(255,255,255,0.9);
  --shadow: 0 4px 24px rgba(15,43,107,0.10);
  --shadow-lg: 0 16px 48px rgba(15,43,107,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

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

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(15,43,107,.08);
  transition: all .3s ease;
}
#header.scrolled { background: #ffffff; }

/* ===== NAVBAR ===== */
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ===== LOGO ===== */
.logo-img {
  height: 52px; width: auto;
  object-fit: contain;
  transition: all .3s ease;
}

/* ===== NAVIGATION ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  margin-right: auto;
}
.nav-links a {
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all .3s ease;
}
.nav-links a:hover {
  color: var(--green);
  background: rgba(73,169,66,0.10);
}
.nav-links a.active-nav { color: var(--green); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: 0.3s;
}
#header.scrolled .hamburger span { background: var(--blue); }

/* ===== PAGE FIX ===== */
.page { display: none; min-height: 100vh; padding-top: 72px; }
.page.active { display: block; }

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .nav-container { height: 80px; }
  .logo-img { height: 58px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 80px; left: -100%;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 25px;
    gap: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  .nav-links.active { left: 0; }
  .nav-links a { color: var(--blue) !important; width: 100%; text-align: center; }
  .nav-cta { display: none; }
}

.nav-cta { margin-left: 20px; }
.btn-primary-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%);
  color: #ffffff !important;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(73,169,66,0.28);
  transition: all 0.3s ease;
}
.btn-primary-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(73,169,66,0.42);
  background: linear-gradient(135deg, #3a8a35 0%, #148a8a 100%);
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin: 12px 0 16px;
  line-height: 1.2;
}
.section-header p { color: var(--gray); font-size: 1rem; max-width: 560px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(73,169,66,0.12), rgba(26,166,166,0.12));
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(73,169,66,0.25);
  margin-bottom: 16px;
}

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

/* ===== HERO SECTION ===== */
.hero {
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg, #071640 0%, var(--blue) 40%, #0d3d5f 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
#particleCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(73,169,66,0.14) 0%, transparent 60%),
  radial-gradient(ellipse at 30% 80%, rgba(26,166,166,0.10) 0%, transparent 50%),
  radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.06) 0%, transparent 40%);
}
.energy-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end; padding-right: 8%; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(73,169,66,0.15);
  animation: pulse-ring 4s ease-in-out infinite;
}
.ring1 { width: 350px; height: 350px; animation-delay: 0s; }
.ring2 { width: 520px; height: 520px; animation-delay: 0.7s; border-color: rgba(26,166,166,0.10); }
.ring3 { width: 700px; height: 700px; animation-delay: 1.4s; border-color: rgba(255,255,255,0.05); }
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(73,169,66,0.12);
  border: 1px solid rgba(73,169,66,0.3);
  color: #a3d9a0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-logo-display {
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== PHONE MOCKUP ===== */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone-mockup { position: relative; animation: float 3.5s ease-in-out infinite; }
.app-ui { height: 80%; display: flex; flex-direction: column; }
.app-header-bar {
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-logo-sm {
  display: flex; align-items: center; gap: 6px;
  color: white; font-size: 0.8rem; font-weight: 700;
}
.app-user-dot {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 50%;
}
.app-map-area {
  flex: 1;
  background: linear-gradient(145deg, #1a3a5c, #0d2644);
  position: relative; overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(73,169,66,0.06) 1px, transparent 1px),
  linear-gradient(90deg, rgba(73,169,66,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-pin { position: absolute; cursor: pointer; transition: transform 0.2s; }
.map-pin:hover { transform: scale(1.2); }
.pin1 { top: 30%; left: 35%; }
.pin2 { top: 55%; right: 30%; }
.pin3 { top: 40%; left: 55%; }
.active-pin { filter: drop-shadow(0 0 8px rgba(15,43,107,0.8)); }
.pin-pulse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(15,43,107,0.5);
  animation: ping 1.5s ease-out infinite;
}
@keyframes ping { 0% { transform: translate(-50%,-50%) scale(0.8); opacity: 1; } 100% { transform: translate(-50%,-50%) scale(2); opacity: 0; } }
.app-card-area {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 12px;
}
.station-card {
  background: rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 12px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.station-name { color: white; font-size: 0.75rem; font-weight: 600; }
.station-dist { color: rgba(255,255,255,0.5); font-size: 0.65rem; margin-top: 2px; }
.station-status { font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.available { background: rgba(73,169,66,0.2); color: #a3d9a0; }
.charger-types { display: flex; gap: 6px; margin-bottom: 10px; }
.charger-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); font-size: 0.58rem; padding: 3px 8px; border-radius: 6px; }
.active-tag { background: rgba(26,166,166,0.2); color: #6ee7e7; }
.app-charge-btn {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: white; font-size: 0.75rem; font-weight: 700;
  text-align: center; padding: 10px; border-radius: 10px; cursor: pointer;
}
.phone-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(73,169,66,0.22) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 3; white-space: nowrap;
}
.fc1 { top: 10%; right: -40px; animation: float 3s ease-in-out infinite 0.5s; }
.fc2 { bottom: 28%; left: -50px; animation: float 3.5s ease-in-out infinite 1s; }
.fc3 { bottom: 8%; right: -45px; animation: float 4s ease-in-out infinite 0.2s; }
.fc-icon { font-size: 1.2rem; }
.fc-info { display: flex; flex-direction: column; }
.fc-info b { font-size: 0.8rem; color: var(--dark); font-weight: 700; }
.fc-info small { font-size: 0.65rem; color: var(--gray); }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.72rem;
  letter-spacing: 1px; text-transform: uppercase;
}
.scroll-dot {
  width: 4px; height: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px; position: relative; overflow: hidden;
}
.scroll-dot::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--green);
  border-radius: 2px;
  animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim { 0% { top: -50%; } 100% { top: 100%; } }

/* ===== PLUGONE HERO BANNER — styles now consolidated at PLUGONE HERO SECTION below ===== */

/* ===== WHY ANAX ===== */
.why-section { padding: 100px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: white; border-radius: var(--radius);
  padding: 32px 28px; transition: all var(--transition);
  border: 1px solid var(--light-gray);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(73,169,66,0.12), rgba(73,169,66,0.05));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--green);
}
.why-icon.cyan { background: linear-gradient(135deg, rgba(26,166,166,0.12), rgba(26,166,166,0.05)); color: var(--cyan); }
.why-icon.blue { background: linear-gradient(135deg, rgba(15,43,107,0.12), rgba(15,43,107,0.05)); color: var(--blue); }
.why-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ===== PLUGONE PREVIEW ===== */
.plugone-preview { padding: 100px 0; background: white; }
.preview-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.preview-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--dark); margin: 12px 0 20px; line-height: 1.2; }
.preview-text p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.feature-list { margin-bottom: 36px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--dark); font-size: 0.9rem; padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}
.fl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fl-dot.green { background: var(--green); }
.fl-dot.cyan { background: var(--cyan); }
.fl-dot.blue { background: var(--blue); }
.preview-btns { display: flex; gap: 16px; }
.preview-card-stack {
  position: relative;
  width: 400px;
  height: 520px;
}

.pcard {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(15, 43, 107, 0.12);
  transition: all 0.4s ease;
}

.pcard:hover {
  transform: translateY(-8px);
}

/* Top Card */
.pcard1 {
  top: 0;
  left: 0;
  z-index: 3;
}

/* Middle Card */
.pcard2 {
  top: 140px;
  left: 20px;
  z-index: 2;
}

/* Bottom Card */
.pcard3 {
  top: 280px;
  left: 40px;
  z-index: 1;
}
.pcard-header { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.pcard-body { font-size: 0.8rem; color: var(--gray); line-height: 1.5; margin-bottom: 14px; }
.pcard-tag {
  display: inline-block;
  background: rgba(73,169,66,0.1); color: var(--green);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 100px;
}
.cyan-tag { background: rgba(26,166,166,0.1); color: var(--cyan); }
.blue-tag { background: rgba(15,43,107,0.1); color: var(--blue); }


@media (max-width: 768px) {

  .preview-card-stack {
    width: 100%;
    height: auto;
  }

  .pcard {
    position: relative;
    top: auto !important;
    left: auto !important;
    margin-bottom: 20px;
  }

}



/* ===== CTA BANNER ===== */
.cta-banner { padding: 100px 0; position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #071640, var(--blue), #0d3d5f);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-content { text-align: center; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: white; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: white !important;
  font-weight: 700; font-size: 0.9rem;
  padding: 14px 28px; border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(73,169,66,0.28);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(73,169,66,0.42); }

.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: white !important;
  font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(73,169,66,0.30);
}
.btn-primary-lg:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(73,169,66,0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  font-weight: 600; font-size: 0.9rem;
  padding: 14px 28px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 2px solid rgba(73,169,66,0.5);
  color: var(--green) !important;
  font-weight: 600; font-size: 0.9rem;
  padding: 13px 28px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--green); background: rgba(73,169,66,0.1); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--blue) !important;
  font-weight: 700; font-size: 0.9rem;
  padding: 14px 28px; border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: white !important;
  font-weight: 600; font-size: 0.9rem;
  padding: 13px 28px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ===== PAGE HEROES ===== */
.page-hero { position: relative; padding: 80px 0; overflow: hidden; }
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, #0d3d5f 100%);
}
.plugone-bg { background: linear-gradient(135deg, #071640, #0d3d5f, #064e3b); }
.solutions-bg { background: linear-gradient(135deg, var(--blue), #0c3b6e, #0a4d5c); }
.partner-bg { background: linear-gradient(135deg, #0d3d5f, var(--blue), #1a1a5c); }
.contact-bg { background: linear-gradient(135deg, var(--blue), #0d2c4e, #083344); }
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; color: white;
  margin: 16px 0 16px; line-height: 1.2;
}
.page-hero-content p { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about-overview { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.about-text p { color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.about-text strong { color: var(--blue); }
.about-cards { display: flex; flex-direction: column; gap: 20px; }
.mv-card {
  background: white; border-radius: var(--radius); padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  border: 1px solid var(--light-gray); transition: all var(--transition);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-card.mission .mv-icon { background: linear-gradient(135deg, var(--green), #3a8a35); }
.mv-card.vision .mv-icon { background: linear-gradient(135deg, var(--cyan), #148a8a); }
.mv-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mv-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.mv-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

.values-section { padding: 80px 0; background: var(--bg); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-item {
  background: white; border-radius: var(--radius); padding: 28px 20px;
  text-align: center; border: 1px solid var(--light-gray);
  transition: all var(--transition); position: relative;
}
.value-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-num { font-family: var(--font-display); font-size: 0.7rem; font-weight: 800; color: rgba(73,169,66,0.5); letter-spacing: 2px; margin-bottom: 12px; }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-item h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-item p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

.about-cta { padding: 80px 0 100px; }
.cta-card {
  background: linear-gradient(135deg, var(--blue), #0d3d5f);
  border-radius: 24px; padding: 60px 48px; text-align: center;
}
.cta-card h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: white; margin-bottom: 16px; }
.cta-card p { color: rgba(255,255,255,0.72); margin-bottom: 32px; }

/* ===== PLUGONE PAGE ===== */
.plugone-hero-content { position: relative; z-index: 2; text-align: center; }
.plugone-brand {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white; font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  padding: 10px 20px; border-radius: 100px; margin-bottom: 24px;
}
.plugone-hero-content h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 18px; }
.plugone-hero-content p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 500px; margin: 0 auto 32px; }
.plugone-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.plugone-features { padding: 100px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: white; border-radius: var(--radius); padding: 28px 22px;
  border: 1px solid var(--light-gray); transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.green-bg { background: linear-gradient(135deg, var(--green), #3a8a35); }
.cyan-bg { background: linear-gradient(135deg, var(--cyan), #148a8a); }
.blue-bg { background: linear-gradient(135deg, var(--blue), #1e40af); }
.feature-card h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-card p { font-size: 0.825rem; color: var(--gray); line-height: 1.6; }

.plugone-download {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #064e3b, var(--blue));
}
.download-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.download-inner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: white; margin-bottom: 16px; }
.download-inner p { color: rgba(255,255,255,0.72); margin-bottom: 36px; }
.download-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.store-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white; padding: 14px 24px; border-radius: 12px;
  transition: all var(--transition); min-width: 160px;
}
.store-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.store-btn div { display: flex; flex-direction: column; text-align: left; }
.store-btn small { font-size: 0.65rem; opacity: 0.7; line-height: 1.2; }
.store-btn strong { font-size: 0.9rem; }
.plugone-web-link { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition); }
.plugone-web-link:hover { color: var(--green); }

/* ===== SOLUTIONS ===== */
.solutions-grid-section { padding: 80px 0 100px; }
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.solution-card {
  background: white; border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--light-gray); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.sol-number { font-family: var(--font-display); font-size: 0.7rem; font-weight: 800; color: var(--light-gray); letter-spacing: 1px; margin-bottom: 12px; }
.sol-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(73,169,66,0.1), rgba(73,169,66,0.05));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 18px;
}
.sol-icon.cyan { background: linear-gradient(135deg, rgba(26,166,166,0.1), rgba(26,166,166,0.05)); color: var(--cyan); }
.sol-icon.blue { background: linear-gradient(135deg, rgba(15,43,107,0.1), rgba(15,43,107,0.05)); color: var(--blue); }
.solution-card h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.solution-card p { font-size: 0.825rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.sol-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sol-tags span { background: rgba(73,169,66,0.08); color: var(--green); font-size: 0.65rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.sol-tags.cyan-tags span { background: rgba(26,166,166,0.08); color: var(--cyan); }
.sol-tags.blue-tags span { background: rgba(15,43,107,0.08); color: var(--blue); }

/* ===== PARTNERSHIPS ===== */
.partners-who { padding: 80px 0; }
.partner-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pt-card {
  background: white; border-radius: var(--radius); padding: 28px 22px;
  border: 1px solid var(--light-gray); transition: all var(--transition); text-align: center;
}
.pt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pt-icon { font-size: 2.2rem; margin-bottom: 14px; }
.pt-card h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.pt-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

.partner-benefits { padding: 0 0 80px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card {
  background: linear-gradient(135deg, rgba(15,43,107,0.04), rgba(26,166,166,0.04));
  border-radius: var(--radius); padding: 32px 24px;
  border: 1px solid rgba(15,43,107,0.08); transition: all var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(73,169,66,0.2); }
.ben-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.benefit-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.benefit-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

.partner-cta-section { padding: 0 0 100px; }
.partner-cta-card {
  background: linear-gradient(135deg, var(--blue), #0d3d5f);
  border-radius: 24px; padding: 64px 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.partner-cta-text h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; color: white; margin-bottom: 14px; line-height: 1.3; }
.partner-cta-text p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.65; }
.partner-cta-action { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-shrink: 0; }
.partner-contact-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-align: center; }
.partner-contact-note a { color: var(--green); }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.contact-info-col h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.contact-info-col > p { color: var(--gray); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-icon { background: linear-gradient(135deg, var(--green), #3a8a35); }
.email-icon { background: linear-gradient(135deg, var(--cyan), #148a8a); }
.addr-icon { background: linear-gradient(135deg, var(--blue), #1e40af); }
.ci-label { font-size: 0.72rem; font-weight: 700; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.ci-value { font-size: 0.9rem; color: var(--dark); line-height: 1.5; }
a.ci-value:hover { color: var(--green); }
.map-container { border-radius: 12px; overflow: hidden; border: 1px solid var(--light-gray); }
.contact-form-card {
  background: white; border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--light-gray);
}
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--light-gray); border-radius: 10px;
  font-size: 0.875rem; font-family: var(--font-body);
  color: var(--dark); background: white;
  transition: all var(--transition); outline: none;
}
.form-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(73,169,66,0.1); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.btn-form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: white; font-weight: 700; font-size: 0.95rem; padding: 15px;
  border-radius: 10px; border: none; cursor: pointer;
  font-family: var(--font-body); transition: all var(--transition);
}
.btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(73,169,66,0.4); }
.form-success {
  display: flex; align-items: center; gap: 10px;
  background: rgba(73,169,66,0.08);
  border: 1px solid rgba(73,169,66,0.3);
  color: var(--green); font-size: 0.875rem; font-weight: 600;
  padding: 14px 16px; border-radius: 10px; margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer { position: relative; overflow: hidden; padding: 80px 0 0; }
.footer-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #071640 0%, var(--blue) 60%, #0d3d5f 100%);
}
.footer .container { position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { display: block; margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.footer-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: all var(--transition);
}
.social-link:hover { background: var(--green); color: white; transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.825rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.footer-contact a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--green); }

/* ===== FLOATING ACTIONS ===== */
.floating-actions { position: fixed; bottom: 32px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.fab { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.2); transition: all var(--transition); }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab.whatsapp { background: #25D366; }
.fab.call { background: var(--blue); }
.fab.contact-fab { background: linear-gradient(135deg, var(--green), var(--cyan)); }

/* ===== ANIMATIONS ===== */
.reveal, .reveal-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
.reveal.visible, .reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal { transform: translateX(-20px); }
.reveal.visible { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-text { order: 1; } .hero-visual { order: 2; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .preview-inner { grid-template-columns: 1fr; gap: 60px; }
  .preview-visual { display: flex; justify-content: center; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-cta-card { grid-template-columns: 1fr; text-align: center; }
  .partner-cta-action { align-items: center; }
  .plugone-banner-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .plugone-banner-cta { align-items: center; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-types-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: white; padding: 24px; gap: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); z-index: 999;
  }
  .nav-links.open a { color: var(--dark); padding: 12px 16px; font-size: 1rem; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .partner-types-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-cta-card { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .fc1, .fc2, .fc3 { display: none; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero { padding: 60px 0; }
  .hero-headline { font-size: 1.8rem; }
  .preview-card-stack { height: 200px; }
  .pcard { width: 200px; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .plugone-hero-btns { flex-direction: column; align-items: center; }
  .download-btns { flex-direction: column; align-items: center; }
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  animation: livePulse 1.5s infinite;
  box-shadow: 0 0 0 rgba(239, 68, 68, 0.7);
}

@keyframes livePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.badge-product {
  font-weight: 700;
  color: #22c55e;
}

.badge-divider {
  margin: 0 8px;
  opacity: 0.7;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone-frame {
  width: 320px;
  height: 640px;
  border-radius: 42px;
  overflow: hidden;
  background: #111827;
  border: 10px solid #111827;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-buttons .btn-left,
.phone-buttons .btn-right {
  position: absolute;
  background: #2a2a2a;
  border-radius: 4px;
  z-index: 5;
}

.phone-buttons .btn-left.top {
  left: -3px;
  top: 120px;
  width: 3px;
  height: 40px;
}

.phone-buttons .btn-left.bottom {
  left: -3px;
  top: 180px;
  width: 3px;
  height: 70px;
}

.phone-buttons .btn-right {
  right: -3px;
  top: 150px;
  width: 3px;
  height: 80px;
}


/* ===== PLUGONE HERO SECTION ===== */

.plugone-hero-banner {
  background: linear-gradient(
          135deg,
          #0F2B6B 0%,
          #154284 50%,
          #0B7A4A 100%
  );

  padding: 80px 0;
}

.plugone-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 80px;

  max-width: 1200px;
  margin: 0 auto;
}

.plugone-banner-text {
  flex: 1;
  max-width: 650px;
}

/* Badge */

.plugone-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 18px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  border-radius: 999px;

  color: #A7F3D0;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #22C55E;
}

/* Title */

.plugone-main-title {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;

  color: #fff;

  margin-bottom: 20px;
}

.plugone-highlight {
  color: #34D399;
}

/* Subtitle */

.plugone-subheadline {
  font-size: 22px;
  color: rgba(255,255,255,0.85);

  margin-bottom: 24px;
}

/* Description */

.plugone-description {
  color: rgba(255,255,255,0.8);

  font-size: 18px;
  line-height: 1.8;

  margin-bottom: 30px;
}

/* Live Badge */

.plugone-live-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;

  background: rgba(255,255,255,0.08);

  border-radius: 999px;
}

.live-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: red;
}

.website {
  color: #34D399;
  font-weight: 700;
}

.status {
  color: rgba(255,255,255,0.8);
}

/* Right Side */

.plugone-banner-cta {
  width: 260px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 30px;
}

.plugone-logo-wrapper {
  width: 180px;
  height: 180px;

  background: rgba(255,255,255,0.95);

  border-radius: 24px;

  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.plugone-logo {
  width: 100%;
  height: auto;
}

.plugone-btn {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 16px 32px;
  min-width: 220px;
  height: 60px;

  border-radius: 50px;

  background: linear-gradient(135deg, #49A942 0%, #1AA6A6 100%);
  color: #fff;
  text-decoration: none;

  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;

  box-shadow: 0 12px 25px rgba(73, 169, 66, 0.25);
  transition: all 0.3s ease;
}

/* Hover Effect */
.plugone-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #5bc84d 0%, #22c7c7 100%);
  box-shadow: 0 18px 35px rgba(73, 169, 66, 0.35);
}

.plugone-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* Icon Animation */
.plugone-btn:hover svg {
  transform: translate(3px, -3px);
}

.plugone-btn span {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}

.plugone-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

/* Mobile */

@media (max-width: 992px) {

  .plugone-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .plugone-main-title {
    font-size: 42px;
  }

  .plugone-subheadline {
    font-size: 18px;
  }

  .plugone-description {
    font-size: 16px;
  }

  .plugone-live-status {
    justify-content: center;
  }
}

/* ===== ABOUT HERO ===== */
.about-hero {
  background: linear-gradient(135deg, #0A2D73 0%, #0B3E8A 50%, #00695C 100%);
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.page-hero-content {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.about-hero-text {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-text .section-tag {
  display: table;
  margin: 0 auto 30px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ADE80;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-hero-text h1 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fff;
  max-width: 520px;
}

.about-hero-text h1 .gradient-text {
  display: inline;
  background: linear-gradient(90deg, #22c55e, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0;
}

/* Right Image */
.about-hero-image {
  display: flex;
  justify-content: center;
}

.about-hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Tablet */
@media (max-width: 1024px) {
  .page-hero-content {
    gap: 40px;
  }

  .about-hero-text h1 {
    font-size: 3.5rem;
  }

  .about-hero-image img {
    max-width: 450px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .about-hero {
    padding: 70px 0;
  }

  .page-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .about-hero-text {
    max-width: 100%;
  }

  .about-hero-text h1 {
    font-size: 2.6rem;
    line-height: 1.15;
  }

  .about-hero-text p {
    margin: 0 auto;
    font-size: 1.05rem;
  }

  .about-hero-image img {
    max-width: 350px;
  }
}

.partner-hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.partner-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.partner-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
  font-weight: 800;
  margin: 0;
}

.partner-hero-content p {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

.partner-hero-content .section-tag {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .partner-hero {
    padding: 100px 0 60px;
    min-height: 50vh;
  }

  .partner-hero-content h1 {
    font-size: 2.5rem;
  }

  .partner-hero-content p {
    font-size: 1rem;
  }
}

.contact-hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.contact-hero .page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;

  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.contact-hero .section-tag {
  margin-bottom: 8px;
}

.contact-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
  font-weight: 800;
  margin: 0;
}

.contact-hero p {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
    min-height: 45vh;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* ===== PLUGONE HERO ===== */

.plugone-hero {
  background: linear-gradient(
          135deg,
          #0A2D73 0%,
          #0B3E8A 50%,
          #00695C 100%
  );

  padding: 100px 0;
}

.plugone-hero-content {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.plugone-hero-text {
  max-width: 620px;
}

.plugone-hero-text .section-tag {
  display: inline-flex;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ADE80;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.plugone-hero-text h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.plugone-hero-text .gradient-text {
  display: block;
  background: linear-gradient(
          90deg,
          #22c55e,
          #14b8a6
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plugone-hero-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

.plugone-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.plugone-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plugone-hero-image img {
  width: 100%;
  max-width: 380px;   /* Pehle 520px tha */
  height: auto;
  border-radius: 28px;
  padding: 35px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.plugone-hero-image img:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

/* Tablet */

@media (max-width: 1024px) {

  .plugone-hero-content {
    gap: 40px;
  }

  .plugone-hero-text h1 {
    font-size: 3rem;
  }

  .plugone-hero-image img {
    max-width: 450px;
  }
}

/* Mobile */

@media (max-width: 768px) {

  .plugone-hero {
    padding: 80px 0;
  }

  .plugone-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .plugone-hero-text {
    max-width: 100%;
  }

  .plugone-hero-text h1 {
    font-size: 2.5rem;
  }

  .plugone-hero-btns {
    justify-content: center;
  }

  .plugone-hero-image img {
    max-width: 350px;
  }
}


.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-left {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-bottom-right {
  display: flex;
  gap: 30px;
}

.footer-bottom-right a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #4CAF50;
}

@media (max-width: 768px) {

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

}


.legal-section {
  padding: 100px 0;
  background: #f8fafc;
}

.legal-card {
  max-width: 950px;
  margin: auto;
  background: white;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(15,23,42,0.08);
}

.legal-card h2 {
  color: #0F2B6B;
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 20px;
}

@media (max-width: 768px) {

  .legal-card {
    padding: 30px 25px;
  }

}

.legal-hero {
  padding: 100px 0 70px;
  background: linear-gradient(
          135deg,
          #0F2B6B 0%,
          #134B84 100%
  );
  text-align: center;
}

.legal-hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.legal-hero p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 80px 0 50px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-hero p {
    font-size: 16px;
  }
}

/* ===========================
   LEGAL PAGES (Privacy & Terms)
=========================== */

/* Hero Section */
.legal-hero {
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #0F2B6B 0%, #134B84 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: rgba(73, 169, 66, 0.08);
  border-radius: 50%;
  filter: blur(50px);
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  filter: blur(40px);
}

/* Badge */
.legal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 50px;
  background: rgba(73, 169, 66, 0.12);
  border: 1px solid rgba(73, 169, 66, 0.25);
  color: #49A942;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

/* Heading */
.legal-hero h1 {
  color: #FFFFFF;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
}

.legal-hero h1 span {
  color: #49A942;
}

/* Description */
.legal-hero p {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.8;
}

/* Last Updated */
.legal-update {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  font-weight: 500;
}

/* Content Section */
.legal-section {
  padding: 80px 0;
  background: #F8FAFC;
}

/* Main Card */
.legal-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 60px;
  border-radius: 30px;
  box-shadow:
          0 20px 60px rgba(15, 43, 107, 0.08);
  border: 1px solid rgba(15, 43, 107, 0.05);
}

/* Section Headings */
.legal-card h2 {
  color: #0F2B6B;
  font-size: 28px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 18px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 30px;
  background: #49A942;
  border-radius: 10px;
}

/* Paragraphs */
.legal-card p {
  color: #64748B;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* Lists */
.legal-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.legal-card li {
  color: #64748B;
  margin-bottom: 14px;
  line-height: 1.8;
  position: relative;
}

/* Contact Box */
.legal-card .contact-box {
  margin-top: 40px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(
          135deg,
          rgba(15, 43, 107, 0.04),
          rgba(73, 169, 66, 0.04)
  );
  border: 1px solid rgba(73, 169, 66, 0.15);
}

.legal-card .contact-box strong {
  color: #0F2B6B;
}

/* Links */
.legal-card a {
  color: #0F2B6B;
  font-weight: 600;
  text-decoration: none;
}

.legal-card a:hover {
  color: #49A942;
}

/* Responsive */
@media (max-width: 992px) {

  .legal-hero h1 {
    font-size: 42px;
  }

  .legal-card {
    padding: 45px;
  }

}

@media (max-width: 768px) {

  .legal-hero {
    padding: 80px 0 60px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-card {
    padding: 30px 25px;
    border-radius: 20px;
  }

  .legal-card h2 {
    font-size: 22px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 15px;
  }

}

@media (max-width: 480px) {

  .legal-hero h1 {
    font-size: 30px;
  }

  .legal-badge {
    font-size: 12px;
    padding: 8px 20px;
  }

}

