/* ============================================
   CEPTA WEBSITE — SHARED STYLES
   ============================================ */

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

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

html {
  scroll-behavior: smooth;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

input {
  font-family: inherit;
}

/* --- CSS Variables --- */
:root {
  --accent: #B7EF34;
  --accent-dim: rgba(183, 239, 52, 0.08);
  --accent-dim-hover: rgba(183, 239, 52, 0.14);
  --dark: #0d1117;
  --dark-card: #161b22;
  --dark-border: #21262d;
  --dark-border-hover: #30363d;
  --text-white: #ccc8c8;
  --text-muted: #9ca3af;
  --text-dark: #202124;
  --light-bg: #f9fafb;
  --light-card: #ffffff;
  --light-border: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.24);
  --shadow-accent: 0 8px 32px rgba(183,239,52,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.25s ease;
}

/* --- Base Typography --- */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-white);
  background-color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 68px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  line-height: 1.7;
}

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

section {
  padding: 80px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(183, 239, 52, 0.2);
  margin-bottom: 16px;
}

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

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

.text-center {
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #c8f547;
  border-color: #c8f547;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-dark {
  background: var(--dark-card);
  color: var(--text-white);
  border-color: var(--dark-border);
}

.btn-dark:hover {
  background: var(--dark);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid #1a1a1a;
  backdrop-filter: blur(10px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}

.navbar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 40px;
  text-decoration: none;
}

.logo-icon {
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-white);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.05);
}

.nav-link.active {
  color: var(--accent);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transform: translateX(-50%) translateY(-6px);
  pointer-events: none;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-item:hover {
  color: var(--text-white);
  background: rgba(255,255,255,0.06);
}

.dropdown-item .dropdown-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark-border);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.dropdown-item:hover .dropdown-dot {
  background: var(--accent);
}

.dropdown-divider {
  height: 1px;
  background: var(--dark-border);
  margin: 6px 8px;
}

/* Navbar actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-white);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dark-border-hover);
  transition: var(--transition);
}

.nav-login:hover {
  border-color: var(--text-white);
  background: rgba(255,255,255,0.04);
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

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

/* ============================================
   HERO — HOMEPAGE
   ============================================ */

.hero {
  background: #0a1f10;
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(183,239,52,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(183,239,52,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.hero-visual {
  overflow: hidden;
  height: 730px;
  align-self: flex-end;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(183,239,52,0.2);
  margin-bottom: 20px;
}

.hero-content {
  padding-top: 180px;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--text-white);
  animation: hero-fade-up 0.9s ease both;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 36px;
  max-width: 560px;
  animation: hero-fade-up 0.9s ease 0.25s both;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  overflow: visible;
}

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

.hero-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(183,239,52,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-header h3 {
  font-size: 1rem;
  color: var(--text-white);
  font-weight: 600;
}

.hero-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-stat {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.hero-stat .stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-card-bar {
  margin-top: 20px;
  height: 6px;
  background: var(--dark-border);
  border-radius: 3px;
  overflow: hidden;
}

.hero-card-bar-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--accent), #d4ff6a);
  border-radius: 3px;
}

/* ============================================
   TRUSTED BY
   ============================================ */

.trusted-by {
  background: #d3d3d3;
  padding: 10px 0;
  border-top: 1px solid #d4f270;
  border-bottom: 1px solid #d4f270;
}

.trusted-by-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.trusted-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* Marquee wrapper — clips overflow */
.trusted-logos-track-wrapper {
  width: 100%;
  overflow: hidden;
  /* fade edges for a polished look */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* The scrolling track — double-width to hold original + duplicate */
.trusted-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}

.trusted-logos-track:hover {
  animation-play-state: paused;
}

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

.trusted-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #4d6a00;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
  border-right: 1px solid #c5ea6a;
  line-height: 1;
  min-width: 160px;
  flex-shrink: 0;
}

.trusted-logo-pill:hover {
  color: #2d4300;
}

.partner-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.85);
  transition: filter 0.2s ease;
}

.trusted-logo-pill:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
}

/* ============================================
   VALUE PROP SECTION
   ============================================ */

.value-prop {
  background: var(--dark);
  text-align: center;
}

.value-prop-inner {
  max-width: 860px;
  margin: 0 auto;
}

.value-prop h2 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.value-prop p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.cert-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 18px;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cert-badge:hover {
  border-color: rgba(183,239,52,0.4);
  background: rgba(183,239,52,0.05);
}

.cert-badge-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #B7EF34;
  flex-shrink: 0;
}

.cert-badge-abbr {
  font-size: 0.6rem;
  font-weight: 800;
  color: #B7EF34;
  letter-spacing: 0.05em;
  line-height: 1;
}

.cert-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cert-badge-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.cert-badge-sub {
  font-size: 0.68rem;
  color: #9ca3af;
  white-space: nowrap;
}

.cert-badge-img-only {
  background: transparent;
  border: none;
  padding: 0;
}

.cert-badge-img-only:hover {
  background: transparent;
  border: none;
}

.cert-badge-img {
  height: 104px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.2;
  mix-blend-mode: lighten;
}

/* --- Value Prop Animations --- */
.vp-animate-heading {
  opacity: 0;
  transform: scale(0.96);
  filter: blur(4px);
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

.vp-animate-heading.vp-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.vp-animate-text {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(3px);
  transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s, filter 0.9s ease 0.4s;
}

.vp-animate-text.vp-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ============================================
   SERVICES CARDS SECTION
   ============================================ */

.services {
  background: var(--dark-card);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.services-header {
  position: sticky;
  top: 100px;
}

.services-header h2 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 4rem;
}

.services-header-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Express Payments speed animation */
.express-heading {
  overflow: hidden;
}

.express-word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-60px);
  filter: blur(8px);
  animation: express-speed-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.express-word:nth-child(2) {
  animation-delay: 0.18s;
}

@keyframes express-speed-in {
  0% {
    opacity: 0;
    transform: translateX(-60px);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}


.services-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

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

/* Right column cards offset downward for staggered effect */
.services-grid .service-card:nth-child(even) {
  margin-top: 60px;
}

.service-card {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  padding: 28px;
  align-self: start;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(183,239,52,0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--accent);
  border-color: var(--accent);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.15);
  background: rgba(183,239,52,0.18);
  border-color: rgba(183,239,52,0.35);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(183,239,52,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s ease,
              border-color 0.35s ease;
  flex-shrink: 0;
}

.service-card h3 {
  color: var(--text-white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.service-card-link:hover {
  opacity: 0.75;
}

/* ============================================
   SECURITY SECTION
   ============================================ */

.security-section {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.security-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}

.security-text .section-label {
  margin-bottom: 16px;
  display: inline-block;
}

.security-text h2 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.security-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.security-badge {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-badge:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.security-badge-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(183,239,52,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-badge-body h4 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.security-badge-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  background: var(--light-bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-header .section-label {
  background: rgba(183,239,52,0.12);
}

.faq-header h2 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-header p {
  color: #6b7280;
  font-size: 1rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(183,239,52,0.1);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #000000;
  border-top: 1px solid #1a1a1a;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 16px;
  display: block;
  text-align: left;
}

.footer-brand .footer-logo .navbar-logo-img {
  display: block;
}

.footer-brand .footer-logo .logo-accent {
  color: var(--accent);
}

.footer-brand address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-brand .footer-email {
  font-size: 0.85rem;
  color: var(--accent);
  transition: var(--transition);
}

.footer-brand .footer-email:hover {
  text-decoration: underline;
}

.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.8rem;
  color: var(--text-white);
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  background: var(--accent);
  color: var(--text-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #c8f547;
}

.footer-col h4,
.footer-brand h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}

.social-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   ABOUT PAGE ANIMATIONS
   ============================================ */

.about-hero-animate {
  opacity: 0;
  transform: translateY(32px);
  animation: about-hero-in 1s ease 0.1s both;
}

@keyframes about-hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wwa-animate {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.wwa-animate.wwa-visible {
  opacity: 1;
  transform: translateX(0);
}

.wwa-animate-1 { transition-delay: 0s; }
.wwa-animate-2 { transition-delay: 0.15s; }
.wwa-animate-3 { transition-delay: 0.3s; }
.wwa-animate-4 { transition-delay: 0.45s; }

/* ============================================
   ABOUT HERO
   ============================================ */

.about-hero {
  background: var(--dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(183,239,52,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  max-width: 760px;
}

.about-hero-content h1 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

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

.who-we-are {
  background: var(--dark);
}

.who-we-are .section-label {
  background: rgba(183,239,52,0.12);
}

.who-we-are-inner {
  max-width: 760px;
}

.who-we-are h2 {
  color: var(--text-white);
  margin-bottom: 24px;
}

.who-we-are p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   WHY CEPTA (about)
   ============================================ */

.why-cepta {
  background: var(--dark);
}

.why-cepta-header {
  margin-bottom: 52px;
}

.why-cepta-header h2 {
  color: var(--text-white);
  margin-bottom: 12px;
  max-width: 560px;
}

.why-cepta-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

.why-cepta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
  border-color: var(--accent);
}

.why-card h3 {
  color: var(--text-white);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================
   MISSION & VISION
   ============================================ */

.mission-vision {
  background: var(--dark);
  padding-top: 0;
}

.mission-vision-header {
  text-align: center;
  margin-bottom: 48px;
}

.mission-vision-header h2 {
  color: var(--text-white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mv-card {
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mv-card-dark {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-left: 4px solid var(--accent);
}

.mv-card-dark h3 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.mv-card-dark p {
  color: var(--text-muted);
  line-height: 1.75;
}

.mv-card-accent {
  background: var(--accent);
}

.mv-card-accent h3 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.mv-card-accent p {
  color: rgba(32,33,36,0.8);
  line-height: 1.75;
}

.mv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-card-dark .mv-icon {
  background: var(--accent-dim);
  border: 1px solid rgba(183,239,52,0.2);
}

.mv-card-accent .mv-icon {
  background: rgba(32,33,36,0.12);
}

/* ============================================
   VALUES SECTION (about)
   ============================================ */

.values {
  background: var(--dark);
}

.values-header {
  text-align: center;
  margin-bottom: 52px;
}

.values-header .section-label {
  background: rgba(183,239,52,0.12);
}

.values-header h2 {
  color: var(--text-white);
}

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

.value-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  border-color: var(--accent);
}

.value-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(183,239,52,0.1);
  border: 1px solid rgba(183,239,52,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================
   WHO WE SERVE — SECTORS (about)
   ============================================ */

.sectors {
  background: var(--dark);
}

.sectors-header {
  text-align: center;
  margin-bottom: 52px;
}

.sectors-header h2 {
  color: var(--text-white);
  margin-bottom: 12px;
}

.sectors-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

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

.sector-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
  border-color: var(--accent);
}

.sector-card h4 {
  color: var(--accent);
  font-size: 0.7rem;
}

.sector-card h3 {
  color: var(--text-white);
  font-size: 1.1rem;
}

.sector-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
}

/* ============================================
   PRODUCTS HERO
   ============================================ */

.products-hero {
  background: var(--dark);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(183,239,52,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.products-hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.products-hero h1 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.products-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-section {
  background: var(--light-bg);
}

.products-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.products-section-header h2 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.products-section-header p {
  color: #6b7280;
  font-size: 1rem;
}

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

.product-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #9ca3af;
}

.product-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(183,239,52,0.1);
  border: 1px solid rgba(183,239,52,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
}

.product-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
}

.product-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================
   PRODUCTS CTA SECTION
   ============================================ */

.products-cta {
  background: var(--light-bg);
  padding-top: 0;
  padding-bottom: 80px;
}

.products-cta-inner {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.products-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(183,239,52,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.products-cta-inner h2 {
  color: var(--text-white);
  margin-bottom: 12px;
}

.products-cta-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.products-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  /* Navbar mobile */
  .navbar-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--dark-border);
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 999;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-actions .btn {
    display: none;
  }

  .nav-link {
    width: 100%;
    padding: 10px 12px;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    border: none;
    border-left: 2px solid var(--dark-border);
    border-radius: 0;
    margin-left: 12px;
    padding: 4px 0;
    display: none;
  }

  .nav-item.open .dropdown {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 64px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content p {
    max-width: 100%;
  }

  /* Grids */
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-header {
    position: static;
  }

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

  .security-inner {
    grid-template-columns: 1fr;
  }

  .why-cepta-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  /* Products CTA */
  .products-cta-inner {
    padding: 40px 24px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Stagger delays for grid children */
.services-grid .animate-on-scroll:nth-child(1),
.products-grid .animate-on-scroll:nth-child(1),
.why-cepta-grid .animate-on-scroll:nth-child(1),
.values-grid .animate-on-scroll:nth-child(1),
.sectors-grid .animate-on-scroll:nth-child(1),
.faq-list .animate-on-scroll:nth-child(1) { transition-delay: 0s; }

.services-grid .animate-on-scroll:nth-child(2),
.products-grid .animate-on-scroll:nth-child(2),
.why-cepta-grid .animate-on-scroll:nth-child(2),
.values-grid .animate-on-scroll:nth-child(2),
.sectors-grid .animate-on-scroll:nth-child(2),
.faq-list .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }

.services-grid .animate-on-scroll:nth-child(3),
.products-grid .animate-on-scroll:nth-child(3),
.why-cepta-grid .animate-on-scroll:nth-child(3),
.values-grid .animate-on-scroll:nth-child(3),
.sectors-grid .animate-on-scroll:nth-child(3),
.faq-list .animate-on-scroll:nth-child(3) { transition-delay: 0.18s; }

.services-grid .animate-on-scroll:nth-child(4),
.products-grid .animate-on-scroll:nth-child(4),
.why-cepta-grid .animate-on-scroll:nth-child(4),
.values-grid .animate-on-scroll:nth-child(4),
.sectors-grid .animate-on-scroll:nth-child(4),
.faq-list .animate-on-scroll:nth-child(4) { transition-delay: 0.26s; }

.services-grid .animate-on-scroll:nth-child(5),
.products-grid .animate-on-scroll:nth-child(5),
.values-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.34s; }

.services-grid .animate-on-scroll:nth-child(6),
.products-grid .animate-on-scroll:nth-child(6),
.values-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.42s; }

.services-grid .animate-on-scroll:nth-child(7),
.products-grid .animate-on-scroll:nth-child(7) { transition-delay: 0.5s; }

/* Section headers animate slightly faster */
.animate-section-header {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-section-header.in-view {
  opacity: 1;
  transform: none;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-section-header {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-card-stats {
    grid-template-columns: 1fr 1fr;
  }

  .trusted-logos {
    gap: 8px;
  }

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

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

/* ============================================
   UTILITY — SMOOTH SCROLLBAR, SELECTION
   ============================================ */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

::selection {
  background: rgba(183,239,52,0.25);
  color: var(--text-white);
}
