/* StimmKraft – Голосовой коучинг | weak-sea-541.css */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-bg: #000000;
  --secondary-bg: #111111;
  --accent-bg: #1a1a1a;
  --white: #ffffff;
  --off-white: #e8e8e8;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --border: 1px solid #ffffff;
  --border-dim: 1px solid rgba(255,255,255,0.3);
  --font-main: 'Neue Haas Grotesk Display', 'Helvetica Neue', Arial, sans-serif;
  --letter-spacing-btn: 2px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--primary-bg);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

img {
  display: block;
  max-width: 100%;
}

/* =====================
   SPLASH LOADER
   ===================== */
#splash-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-bg) url('../graphics/hero-bg.webp') center center / cover no-repeat;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

#splash-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.splash-logo {
  text-align: center;
}

.splash-logo .brand-name {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: lowercase;
  color: var(--white);
}

.splash-logo .brand-tagline {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: lowercase;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

.splash-bar {
  width: 60px;
  height: 1px;
  background: var(--white);
  margin: 20px auto 0;
  animation: splashExpand 1.5s ease forwards;
}

@keyframes splashExpand {
  from { width: 0; opacity: 0; }
  to { width: 120px; opacity: 1; }
}

/* =====================
   HEADER / NAV
   ===================== */
#site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 30px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#site-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo svg {
  width: 44px;
  height: 44px;
}

.header-logo .logo-text {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: lowercase;
  color: var(--white);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: var(--white);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a:hover {
  opacity: 1;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-social a {
  font-size: 17px;
  color: var(--white);
}

/* =====================
   MOBILE NAV
   ===================== */
#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  padding: 18px 5%;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-logo {
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: lowercase;
  color: var(--white);
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

#mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.97);
  z-index: 199;
  padding: 30px 5%;
  flex-direction: column;
  gap: 20px;
}

#mobile-menu.open {
  display: flex;
}

#mobile-menu a {
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: lowercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 16px;
}

/* =====================
   HERO SECTION
   ===================== */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--primary-bg) url('../graphics/hero-bg.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 45%;
  margin-left: 5%;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-content.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-label {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: lowercase;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: var(--letter-spacing-btn);
  text-transform: lowercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  border: var(--border);
  color: var(--white);
  min-width: 200px;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  opacity: 1;
}

.btn-solid {
  background: var(--white);
  border: var(--border);
  color: var(--primary-bg);
  min-width: 200px;
}

.btn-solid:hover {
  background: var(--off-white);
  opacity: 1;
}

.btn-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  min-width: 200px;
}

.btn-gold:hover {
  background: rgba(201,168,76,0.15);
  opacity: 1;
}

/* =====================
   NEWSLETTER SECTION
   ===================== */
#newsletter {
  background: var(--primary-bg);
  padding: 60px 5%;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.newsletter-text h2 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: lowercase;
  margin-bottom: 6px;
}

.newsletter-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.newsletter-form {
  flex: 1;
  display: flex;
  gap: 0;
}

.newsletter-form input[type="email"] {
  flex: 1;
  height: 50px;
  background: transparent;
  border: var(--border);
  border-right: none;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 16px;
  padding: 0 20px;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  font-size: 14px;
}

.newsletter-form button {
  height: 50px;
  padding: 0 28px;
  background: var(--white);
  border: var(--border);
  color: var(--primary-bg);
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: lowercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--off-white);
}

/* =====================
   SERVICES SECTION
   ===================== */
#services {
  padding: 100px 5%;
  background: var(--primary-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: default;
}

.service-card:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.03);
}

.service-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 22px;
}

.service-title {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: lowercase;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* =====================
   ABOUT / SPLIT SECTION
   ===================== */
#about {
  display: flex;
  min-height: 600px;
  overflow: hidden;
}

.about-image {
  width: 50%;
  background: url('../graphics/coach-portrait.webp') center center / cover no-repeat;
  min-height: 500px;
}

.about-content {
  width: 50%;
  background: var(--accent-bg);
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  max-width: 480px;
}

.about-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 480px;
}

.about-content .btn {
  align-self: flex-start;
  margin-top: 16px;
}

/* =====================
   TESTIMONIALS / VIDEO
   ===================== */
#testimonials {
  padding: 100px 5%;
  background: var(--secondary-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255,255,255,0.3);
}

.testimonial-stars {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: lowercase;
  color: rgba(255,255,255,0.5);
}

/* =====================
   PROCESS / STEPS
   ===================== */
#process {
  padding: 100px 5%;
  background: var(--primary-bg);
}

.process-list {
  max-width: 1000px;
  margin: 0 auto;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.process-item:last-child {
  border-bottom: none;
}

.process-num {
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  min-width: 70px;
  line-height: 1;
}

.process-body h3 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: lowercase;
  margin-bottom: 10px;
}

.process-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* =====================
   CTA BANNER
   ===================== */
#cta-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../graphics/session-bg.webp') center center / cover no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 5%;
  max-width: 700px;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   CONTACT FORM (reach-us)
   ===================== */
#contact-section {
  padding: 100px 5%;
  background: var(--primary-bg);
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}

.contact-info p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 14px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.contact-detail i {
  color: var(--gold);
  width: 18px;
}

.contact-form-wrap {
  /* form area */
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: lowercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 16px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,0.7);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select option {
  background: #111;
  color: var(--white);
}

.form-submit {
  width: 100%;
  height: 54px;
  background: var(--white);
  border: none;
  color: var(--primary-bg);
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: lowercase;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}

.form-submit:hover {
  background: var(--off-white);
}

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  line-height: 1.6;
}

/* =====================
   INNER PAGE HERO
   ===================== */
.page-hero {
  position: relative;
  padding: 160px 5% 80px;
  background: url('../graphics/services-bg.webp') center center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.8;
}

/* =====================
   CONTENT PAGE SECTION
   ===================== */
.content-section {
  padding: 80px 5%;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 28px;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -0.3px;
  margin: 40px 0 16px;
}

.content-section h3 {
  font-size: 20px;
  font-weight: 300;
  text-transform: lowercase;
  margin: 28px 0 12px;
  color: rgba(255,255,255,0.85);
}

.content-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
  padding-left: 24px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.9;
}

.content-section ul li,
.content-section ol li {
  margin-bottom: 8px;
}

.content-section a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* =====================
   VALUES PAGE
   ===================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.value-card {
  padding: 50px 44px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}

.value-card:hover {
  background: rgba(255,255,255,0.03);
}

.value-card .value-icon {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 300;
  text-transform: lowercase;
  margin-bottom: 14px;
}

.value-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

/* =====================
   FOOTER
   ===================== */
#site-footer {
  background: var(--primary-bg);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 70px 5% 40px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-logo svg {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
}

.footer-logo-name {
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: lowercase;
  color: var(--white);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-nav a {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 36px;
}

.footer-social a {
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: lowercase;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: lowercase;
}

.footer-legal a:hover {
  color: var(--white);
  opacity: 1;
}

/* =====================
   COOKIES ALERT
   ===================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(255,255,255,0.15);
  z-index: 8888;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s ease 1.5s;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  flex: 1;
  min-width: 260px;
}

.cookie-text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  height: 44px;
  padding: 0 28px;
  background: var(--white);
  border: none;
  color: var(--primary-bg);
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: lowercase;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-accept:hover {
  background: var(--off-white);
}

.cookie-reject {
  height: 44px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: lowercase;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.cookie-reject:hover {
  border-color: var(--white);
  color: var(--white);
}

/* =====================
   STATS ROW
   ===================== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  flex: 1;
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1px;
  display: block;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: lowercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

/* =====================
   FAQ SECTION
   ===================== */
#faq {
  padding: 100px 5%;
  background: var(--accent-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 18px;
  text-align: left;
  padding: 28px 50px 28px 0;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.3px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s;
}

.faq-question.open::after {
  content: '–';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

/* =====================
   SUCCESS / ERROR MESSAGES
   ===================== */
.form-message {
  display: none;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: lowercase;
}

.form-message.success {
  display: block;
  border: 1px solid rgba(100,200,100,0.4);
  color: rgba(150,230,150,1);
  background: rgba(0,100,0,0.12);
}

.form-message.error {
  display: block;
  border: 1px solid rgba(200,80,80,0.4);
  color: rgba(230,130,130,1);
  background: rgba(100,0,0,0.12);
}

/* =====================
   UTILITY
   ===================== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.section-pad { padding: 100px 5%; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
  .about { flex-direction: column; }
  .about-image { width: 100%; height: 380px; }
  .about-content { width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #site-header { display: none; }
  #mobile-nav { display: flex; }
  body { padding-top: 60px; }
  #hero { min-height: calc(100vh - 60px); padding-top: 0; }
  .hero-content { width: 90%; margin-left: 5%; }
  .hero-title { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .newsletter-inner { flex-direction: column; gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { border-right: var(--border); }
  .newsletter-form button { width: 100%; }
  .about { flex-direction: column; }
  .about-image { width: 100%; min-height: 300px; }
  .about-content { width: 100%; }
  .footer-nav { gap: 16px; }
  .process-item { flex-direction: column; gap: 16px; }
  .process-num { font-size: 32px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  #cookie-banner { flex-direction: column; gap: 16px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 5% 60px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .service-card { padding: 36px 24px; }
  .testimonial-card { padding: 28px 24px; }
  .value-card { padding: 36px 24px; }
}
