/* ========================================
   Saawan Kapoor Immobilien – Stylesheet
   Modern, clean real estate landing page
   ======================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #1a2332;
  --color-primary-light: #243044;
  --color-secondary: #c9a96e;
  --color-secondary-light: #d4bb8a;
  --color-secondary-dark: #b08c4a;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f5;
  --color-bg-dark: #111820;
  --color-text: #2c2c2c;
  --color-text-light: #6b7280;
  --color-text-inverse: #ffffff;
  --color-border: #e5e7eb;
  --color-success: #16a34a;

  --font-heading: 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

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

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 640px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-dark:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26,35,50,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  white-space: nowrap;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--color-secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-primary);
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  font-size: .85rem !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-bg-dark) 100%);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,24,32,.4) 0%, rgba(26,35,50,.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.3);
  color: var(--color-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--color-secondary);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--color-text-inverse);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--color-secondary);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 580px;
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-stat h3 {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.hero-stat p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* Decorative shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: var(--radius-lg);
  opacity: .08;
  background: var(--color-secondary);
}
.hero-shape-1 {
  width: 300px; height: 300px;
  top: 15%; right: 5%;
  transform: rotate(15deg);
}
.hero-shape-2 {
  width: 200px; height: 200px;
  bottom: 20%; right: 15%;
  transform: rotate(-10deg);
  border-radius: 50%;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 120px 0;
  background: var(--color-bg);
}

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

.about-image {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-accent-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about-accent-card h4 {
  font-size: 2rem;
  color: var(--color-primary);
}

.about-accent-card p {
  font-size: .85rem;
  font-weight: 600;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-text {
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: .95rem;
}

.about-highlight svg {
  width: 22px;
  height: 22px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.about-license {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-alt);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: .85rem;
  color: var(--color-text-light);
  margin-top: 12px;
  border: 1px solid var(--color-border);
}

.about-license svg {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,169,110,.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-secondary);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--color-text-light);
  font-size: .95rem;
  line-height: 1.7;
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages {
  padding: 120px 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.advantages-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.03) 1px, transparent 0);
  background-size: 40px 40px;
}

.advantages-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.advantages-header .section-title {
  color: var(--color-text-inverse);
}

.advantages-header .section-subtitle {
  color: rgba(255,255,255,.6);
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.advantage-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.advantage-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,169,110,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
}

.advantage-card h4 {
  color: var(--color-text-inverse);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.advantage-card p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.7;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  padding: 120px 0;
  background: var(--color-bg);
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-header .section-subtitle {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 64px;
  right: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-border));
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--color-text-light);
  font-size: .9rem;
  line-height: 1.7;
}

/* ========================================
   FACTS / NUMBERS SECTION
   ======================================== */
.facts {
  padding: 80px 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.fact-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.fact-item p {
  font-size: .9rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  padding: 120px 0;
  background: var(--color-bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-secondary);
}

.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: .9rem;
  color: var(--color-primary);
}

.testimonial-info p {
  font-size: .8rem;
  color: var(--color-text-light);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-text {
  color: var(--color-text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-secondary);
}

.contact-item h5 {
  font-size: .85rem;
  color: var(--color-text-light);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-primary);
}

.contact-item a:hover {
  color: var(--color-secondary);
}

.contact-hours {
  margin-top: 40px;
  padding: 24px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.contact-hours h5 {
  font-size: .95rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.contact-hours p {
  font-size: .9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--color-text-light);
  font-size: .9rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  accent-color: var(--color-secondary);
}

.form-consent label {
  font-size: .82rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.form-consent a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--color-success);
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--color-text-light);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-bg-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 320px;
}

.footer h5 {
  color: var(--color-text-inverse);
  font-size: .95rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  transition: var(--transition);
}

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

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.cookie-text a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-accept:hover {
  background: var(--color-secondary-dark);
}

.cookie-decline {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-decline:hover {
  background: rgba(255,255,255,.15);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-option {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .5px;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-option:hover {
  color: #fff;
}

.lang-option.lang-active {
  color: var(--color-secondary);
}

.lang-option.lang-active::after {
  display: none;
}

.lang-divider {
  color: rgba(255,255,255,.3);
  font-size: .75rem;
  user-select: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26,35,50,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .lang-switch { justify-content: center; }
  .lang-option { font-size: 1rem; padding: 6px 10px; }
  .lang-divider { font-size: .9rem; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 100px 0 60px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-accent-card { position: relative; bottom: 0; right: 0; display: inline-block; margin-top: 16px; }
  .about-highlights { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .facts-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: .7rem; }
}
