/* =============================================
   PTB – Production Team Berlin
   Modern, Professional Website Styles
   Color Palette from Logo:
   - Primary Navy: #2B3A67
   - Accent Green: #7AB648
   - Light BG: #F5F7FA
   - White: #FFFFFF
============================================= */

:root {
  --navy: #2B3A67;
  --navy-dark: #1E2A4A;
  --navy-light: #3D4F80;
  --green: #7AB648;
  --green-light: #8EC95C;
  --green-dark: #5E9A30;
  --white: #FFFFFF;
  --light: #F5F7FA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --text: #333333;
  --text-light: #6B7280;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px -5px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--green);
}

img {
  max-width: 100%;
  height: auto;
}

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

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-img {
  height: 48px;
  width: auto;
}

.navbar.scrolled .logo-img {
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-ptb {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 3px;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a:hover {
  color: var(--green);
  background: rgba(122, 182, 72, 0.08);
}

.lang-switch {
  border: 1.5px solid rgba(255,255,255,0.4) !important;
  border-radius: 20px !important;
  padding: 6px 14px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
}

.navbar.scrolled .lang-switch {
  border-color: var(--gray-300) !important;
}

.lang-switch:hover {
  border-color: var(--green) !important;
  background: var(--green) !important;
  color: var(--white) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--navy);
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Background image with fallback gradient */
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  background-image:
    linear-gradient(135deg, rgba(23, 30, 55, 0.82) 0%, rgba(43, 58, 103, 0.75) 50%, rgba(55, 72, 120, 0.82) 100%),
    url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(122, 182, 72, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(122, 182, 72, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23p)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(122, 182, 72, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* =============================================
   SECTIONS
============================================= */
.section {
  padding: 100px 0;
}

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

.section-white {
  background: var(--white);
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(122, 182, 72, 0.1);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

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

.about-text .lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--gray-600);
}

.about-text .highlight-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 600;
  margin: 24px 0;
}

.about-text .btn {
  margin-top: 12px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   SERVICES
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(122, 182, 72, 0.1), rgba(43, 58, 103, 0.06));
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--green);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green);
  color: var(--white);
}

.service-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(122, 182, 72, 0.15), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   WIZARD
============================================= */
.wizard-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.wizard-sidebar {
  position: sticky;
  top: 100px;
}

.wizard-headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  line-height: 1.3;
}

.wizard-subline {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.wizard-trust {
  list-style: none;
  margin-bottom: 32px;
}

.wizard-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
}

.wizard-trust li i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.wizard-contact-info {
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.wizard-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
}

.wizard-contact-item i {
  color: var(--navy);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.wizard-contact-item a,
.wizard-contact-item span {
  color: var(--gray-600);
}

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

/* Wizard Main */
.wizard-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* Progress */
.wizard-progress {
  height: 4px;
  background: var(--gray-100);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 20%;
}

/* Step Indicators */
.wizard-steps-indicator {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}

.wizard-step-dot {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.wizard-step-dot .dot-number {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}

.wizard-step-dot .dot-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wizard-step-dot.active {
  border-color: var(--green);
  background: rgba(122, 182, 72, 0.05);
}

.wizard-step-dot.active .dot-number {
  background: var(--green);
  color: var(--white);
}

.wizard-step-dot.active .dot-label {
  color: var(--green-dark);
}

.wizard-step-dot.completed .dot-number {
  background: var(--navy);
  color: var(--white);
}

.wizard-step-dot.completed .dot-label {
  color: var(--navy);
}

/* Step Content */
.wizard-step {
  display: none;
  animation: wizardFadeIn 0.35s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-step-header {
  margin-bottom: 24px;
}

.wizard-step-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wizard-question {
  font-size: 1.35rem;
  margin-top: 8px;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy);
}

.wizard-hint {
  font-size: 0.88rem;
  color: var(--gray-400);
}

/* Options Grid */
.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.wizard-option {
  cursor: pointer;
}

.wizard-option input {
  display: none;
}

.wizard-option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: var(--transition);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
}

.wizard-option-card i {
  font-size: 1.2rem;
  color: var(--gray-400);
  transition: var(--transition);
  flex-shrink: 0;
}

.wizard-option-card:hover {
  border-color: var(--green);
  background: rgba(122, 182, 72, 0.03);
}

.wizard-option input:checked + .wizard-option-card {
  border-color: var(--green);
  background: rgba(122, 182, 72, 0.08);
  color: var(--navy);
}

.wizard-option input:checked + .wizard-option-card i {
  color: var(--green);
}

/* Textarea */
.wizard-textarea-wrap textarea {
  width: 100%;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--text);
  resize: vertical;
  min-height: 140px;
  outline: none;
  transition: var(--transition);
}

.wizard-textarea-wrap textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 182, 72, 0.12);
}

/* Date Input */
.wizard-date-input {
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-date-input .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wizard-date-input input[type="date"] {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
  outline: none;
  cursor: pointer;
}

.wizard-date-input input[type="date"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(122, 182, 72, 0.12);
}

.wizard-date-input input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: opacity(0.6);
}

@media (max-width: 768px) {
  .wizard-date-input .form-row {
    grid-template-columns: 1fr;
  }
}

/* Contact Fields */
.wizard-contact-fields .form-group {
  margin-bottom: 16px;
}

/* Navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--gray-500);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost:hover {
  color: var(--navy);
  background: var(--gray-50);
}

/* Success */
.wizard-success-content {
  text-align: center;
  padding: 40px 20px;
}

.wizard-success-icon {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 20px;
  line-height: 1;
}

.wizard-success-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.wizard-success-content p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 28px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 182, 72, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
  background: #FEF2F2;
}

.form-message {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
}

.form-message.success {
  background: rgba(122, 182, 72, 0.1);
  color: var(--green-dark);
  border: 1px solid rgba(122, 182, 72, 0.2);
}

.form-message.error {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.spin {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-brand .logo-ptb {
  color: var(--white);
  font-size: 1.8rem;
}

.footer-brand .logo-sub {
  color: var(--green-light);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

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

.footer-contact p {
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
  color: var(--green-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--green-light);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--navy-dark);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .navbar.scrolled .nav-toggle span {
    background: var(--navy);
  }

  .nav-toggle.active span {
    background: var(--white) !important;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

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

  .wizard-wrapper {
    grid-template-columns: 1fr;
  }

  .wizard-sidebar {
    position: static;
  }

  .wizard-main {
    padding: 24px;
  }

  .wizard-options-grid {
    grid-template-columns: 1fr;
  }

  .wizard-step-dot .dot-label {
    display: none;
  }

  .wizard-steps-indicator {
    gap: 6px;
  }

  .wizard-step-dot {
    justify-content: center;
    padding: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .hero-content {
    padding: 100px 16px 60px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  .wizard-main {
    padding: 20px;
  }

  .stat-card {
    padding: 24px 16px;
  }
}

/* =============================================
   TRUST LOGOS / SOCIAL PROOF
============================================= */
.trust-logos-section {
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.trust-logos-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.trust-logos-track {
  display: flex;
  justify-content: center;
}

.trust-logos-slide {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo-item {
  flex-shrink: 0;
  opacity: 0.3;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.trust-logo-item:hover {
  opacity: 0.6;
}

.trust-logo-item img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.trust-logo-item:hover img {
  filter: grayscale(0%);
}

.trust-logo-item span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .trust-logos-slide {
    gap: 32px;
  }
  .trust-logo-item span {
    font-size: 1.2rem;
  }
}

/* =============================================
   COOKIE CONSENT BANNER
============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  border-top: 3px solid var(--green);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.cookie-text {
  margin-bottom: 16px;
}

.cookie-text strong {
  font-size: 1rem;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--green);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.cookie-settings-link {
  background: none;
  border: none;
  color: var(--gray-500);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px;
}

.cookie-settings-link:hover {
  color: var(--navy);
}

.cookie-details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.cookie-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.cookie-toggle input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--green);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cookie-toggle strong {
  color: var(--navy);
}

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

@media (max-width: 768px) {
  .cookie-banner-content {
    padding: 20px 16px;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
    text-align: center;
  }
}
