/* ============================================
   CIPHER TECH — DESIGN SYSTEM
   Bold & Edgy | Dark Theme | Electric Blue
   ============================================ */

/* --- IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* --- VARIABLES --- */
:root {
  --blue: #0066FF;
  --blue-light: #3388FF;
  --blue-glow: rgba(0, 102, 255, 0.35);
  --blue-subtle: rgba(0, 102, 255, 0.08);
  --dark: #050508;
  --dark-card: #0A0A10;
  --dark-border: rgba(255,255,255,0.06);
  --white: #FFFFFF;
  --grey: #8A8A9A;
  --light-grey: #C0C0CC;
  --red-urgent: #FF3B30;
  --green: #00E676;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- URGENCY TICKER --- */
.urgency-bar {
  background: var(--red-urgent);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
  animation: pulse-bg 3s ease-in-out infinite;
}
.urgency-bar span { color: #FFD700; font-weight: 800; }
@keyframes pulse-bg {
  0%, 100% { background: var(--red-urgent); }
  50% { background: #CC2200; }
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(5,5,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
}
.navbar.has-ticker { top: 38px; }
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo svg {
  height: 36px;
  width: auto;
}
.nav-logo em {
  font-style: normal;
  color: var(--blue);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
}
.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--blue-glow);
}
.nav-cta:hover {
  background: var(--blue-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--blue-glow);
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5,5,8,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--grey);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--white); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: float-glow 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes float-glow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-subtle);
  border: 1px solid rgba(0,102,255,0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--red-urgent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 800px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 .highlight {
  color: var(--blue);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--blue);
  opacity: 0.25;
  border-radius: 3px;
}
.hero-sub {
  font-size: 18px;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  box-shadow: 0 4px 25px var(--blue-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--blue-glow);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: var(--blue-subtle);
}

/* --- COUNTDOWN --- */
.countdown-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
  animation: fadeUp 0.8s ease 0.4s both;
}
.countdown-label {
  font-size: 13px;
  color: var(--red-urgent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.countdown {
  display: flex;
  gap: 12px;
}
.countdown-unit {
  text-align: center;
}
.countdown-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 56px;
  display: block;
}
.countdown-txt {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* --- SECTIONS --- */
.section {
  padding: 120px 40px;
  position: relative;
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.7;
}

/* --- STATS ROW --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--dark-border);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
}
.stat-item {
  background: var(--dark-card);
  padding: 48px 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.stat-num .blue { color: var(--blue); }
.stat-text {
  font-size: 14px;
  color: var(--grey);
  font-weight: 500;
}

/* --- SERVICE CARDS --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(0,102,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card.popular {
  border-color: rgba(0,102,255,0.3);
  background: linear-gradient(180deg, rgba(0,102,255,0.06) 0%, var(--dark-card) 100%);
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 100px;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-subtle);
  border: 1px solid rgba(0,102,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-price {
  font-size: 13px;
  color: var(--light-grey);
  font-weight: 600;
}
.service-price .from {
  color: var(--grey);
  font-weight: 400;
}

/* --- TESTIMONIALS --- */
/* --- PRICING / PLANS --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
}
.plan-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.plan-card.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(0,102,255,0.08) 0%, var(--dark-card) 40%);
  transform: scale(1.03);
  z-index: 2;
}
.plan-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--white);
}
.plan-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 28px;
}
.plan-includes {
  flex: 1;
  margin-bottom: 32px;
}
.plan-includes h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey);
  margin-bottom: 16px;
}
.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--light-grey);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.plan-item .check {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-item.disabled {
  color: rgba(255,255,255,0.2);
}
.plan-item.disabled .check {
  color: rgba(255,255,255,0.1);
}
.plan-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--blue-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.plan-delivery .clock {
  font-size: 16px;
}
.plan-cta {
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
}
.plan-cta-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 25px var(--blue-glow);
}
.plan-cta-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--blue-glow);
}
.plan-cta-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.plan-cta-outline:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: var(--blue-subtle);
}
.plan-or {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--dark-border);
}
.plan-or p {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 20px;
}
.plan-or strong {
  color: var(--white);
}
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-4px); }
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 48px;
  max-width: 700px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  color: var(--blue);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 18px;
  color: var(--light-grey);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 15px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--grey);
}

/* --- PROCESS --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.process-step {
  position: relative;
  padding: 32px 24px;
}
.process-num {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 400;
  color: var(--blue);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 20px;
  line-height: 1;
}
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 28px;
}
.process-step p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

/* --- PORTFOLIO --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.portfolio-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
}
.portfolio-card:hover {
  border-color: rgba(0,102,255,0.25);
  transform: translateY(-4px);
}
.portfolio-thumb {
  height: 220px;
  background: linear-gradient(135deg, var(--blue-subtle) 0%, rgba(0,102,255,0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-bottom: 1px solid var(--dark-border);
}
.portfolio-info { padding: 28px; }
.portfolio-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.portfolio-info p {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 20px;
}
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s;
  box-shadow: 0 2px 15px var(--blue-glow);
}
.portfolio-link:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--blue-glow);
}
.portfolio-link-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: none;
}
.portfolio-link-outline:hover {
  border-color: var(--blue);
  background: var(--blue-subtle);
  color: var(--blue-light);
  box-shadow: none;
}
.portfolio-results {
  display: flex;
  gap: 24px;
}
.portfolio-results .result {
  font-size: 13px;
}
.portfolio-results .result strong {
  color: var(--green);
  font-weight: 700;
}

/* --- CTA SECTION --- */
.cta-section {
  text-align: center;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(0,102,255,0.06) 50%, var(--dark) 100%);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px;
  color: var(--grey);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-spots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,59,48,0.1);
  border: 1px solid rgba(255,59,48,0.25);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red-urgent);
  margin-bottom: 32px;
}
.cta-spots .pulse {
  width: 10px;
  height: 10px;
  background: var(--red-urgent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

/* --- ABOUT PAGE --- */
.about-hero {
  padding: 180px 40px 100px;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.about-text p {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 20px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 32px;
}
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
}
.value-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--light-grey);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); }
.contact-info-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 40px;
}
.contact-info-box h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--grey);
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq-list { margin-top: 60px; max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--dark-border);
  padding: 24px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq-q:hover { color: var(--blue-light); }
.faq-q .icon {
  font-size: 24px;
  color: var(--blue);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-a {
  max-height: 300px;
  padding-top: 16px;
}
.faq-a p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--dark-border);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  margin-bottom: 12px;
}
.footer-brand svg {
  height: 40px;
  width: auto;
}
.footer-brand em { font-style: normal; color: var(--blue); }
.footer-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--grey);
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 120px 24px 60px; }
  .hero h1 { letter-spacing: -1px; }
  .section { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .countdown-row { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cta-section { padding: 80px 24px; }
  .navbar.has-ticker { top: 38px; }
}
