:root {
  --bg-main: #0a0f1c;
  --bg-secondary: #131a2b;
  --bg-card: #1c2438;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-color: #00f0ff;
  --accent-hover: #00c3cc;
  --danger-color: #ff4757;
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(20, 27, 45, 0.7);
  --font-main: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-norm: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  color: var(--text-primary);
  background-color: var(--bg-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.content-bound {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.center-text {
  text-align: center;
}
.text-light {
  color: var(--text-primary);
}
.w-full {
  width: 100%;
}

.section-heading {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(90deg, #fff, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subheading {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 50px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Buttons */
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid var(--accent-color);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition-norm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-color);
}

.primary-btn {
  background-color: var(--accent-color);
  color: var(--bg-main);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.primary-btn:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
}

.outline-btn {
  border: 2px solid var(--border-color);
  color: var(--text-primary);
}

.outline-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(0, 240, 255, 0.05);
}

.accent-btn {
  background: linear-gradient(135deg, var(--accent-color), #0066ff);
  color: #fff;
}

.pulse {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-norm);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 5px 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-norm);
}

.main-header.scrolled .header-container {
  padding: 10px 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.brand-logo svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--accent-color);
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition-norm);
}

.nav-links a:hover::before {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 30px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-norm);
}

/* Fullscreen Menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 15, 28, 0.98);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.fullscreen-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-close-area {
  position: absolute;
  top: 30px;
  right: 30px;
}

.close-btn {
  color: var(--text-primary);
  padding: 10px;
}

.close-btn svg {
  width: 40px;
  height: 40px;
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mob-link {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-secondary);
}

.mob-link:hover {
  color: var(--accent-color);
}

.mob-link.action-link {
  margin-top: 20px;
  color: var(--bg-main);
  background: var(--accent-color);
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(0, 240, 255, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 102, 255, 0.05) 0%,
      transparent 40%
    );
  overflow: hidden;
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-text-block h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text-block p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 90%;
}

.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0)
  );
  border: 1px solid var(--border-color);
}

.image-frame img {
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.floating-stat {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float-y 5s ease-in-out infinite;
}

.floating-stat svg {
  color: var(--accent-color);
  width: 32px;
  height: 32px;
}

.floating-stat strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}

.floating-stat span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.stat-top {
  top: -20px;
  right: -20px;
}

.stat-bottom {
  bottom: -30px;
  left: -20px;
  animation-delay: 2.5s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* About Section */
.about-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

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

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: var(--radius-md);
  z-index: 0;
}

.about-image img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
}

.highlight-text {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 24px;
}

.about-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Advantages */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--radius-md);
  transition: var(--transition-norm);
}

.adv-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.icon-sphere {
  width: 70px;
  height: 70px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-sphere svg {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
}

.adv-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.adv-card p {
  color: var(--text-secondary);
}

/* Growth Section */
.growth-section {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.growth-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.growth-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.glass-card {
  position: relative;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.rounded-img {
  border-radius: var(--radius-md);
}

.glass-overlay {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 20px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.glass-overlay svg {
  color: var(--accent-color);
}

/* Europe Focus */
.europe-focus {
  background:
    linear-gradient(rgba(10, 15, 28, 0.8), rgba(10, 15, 28, 0.95)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80")
      center/cover fixed;
  padding: 120px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.eu-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--bg-main);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.large-paragraph {
  font-size: 1.4rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 20px;
}

.eu-desc {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  height: 100%;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-color);
  z-index: 1;
}

.timeline-content {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.timeline-content p {
  color: var(--text-secondary);
}

/* Consultation */
.consultation-section {
  padding: 60px 0;
}

.consult-banner {
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 240, 255, 0.05));
  border: 1px solid var(--accent-color);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.consult-info h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 20px;
}

.consult-info p {
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: 1.1rem;
  max-width: 600px;
}

.consult-action {
  flex-shrink: 0;
}

/* FAQ */
.faq-section {
  background-color: var(--bg-secondary);
}

.accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-header svg {
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.accordion-item.open .accordion-header svg {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-inner {
  padding: 0 30px 24px;
  color: var(--text-secondary);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.contact-details {
  padding: 60px;
  background: linear-gradient(
    180deg,
    rgba(0, 240, 255, 0.05) 0%,
    transparent 100%
  );
}

.contact-desc {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.info-row h5 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
}

.info-row span {
  color: var(--text-secondary);
}

.form-container {
  padding: 60px;
}

.modern-form .input-wrap {
  margin-bottom: 25px;
  position: relative;
}

.modern-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.input-with-icon {
  position: relative;
}

.input-with-icon svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  width: 20px;
  height: 20px;
  z-index: 2;
}

.modern-form input[type="text"],
.modern-form input[type="tel"],
.modern-form input[type="email"],
.modern-form input[type="number"] {
  width: 100%;
  background: rgba(10, 15, 28, 0.5);
  border: 1px solid var(--border-color);
  padding: 16px 16px 16px 48px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.modern-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1);
}

.error-text {
  display: none;
  color: var(--danger-color);
  font-size: 0.85rem;
  margin-top: 8px;
}

.input-wrap.has-error input {
  border-color: var(--danger-color);
}

.input-wrap.has-error .error-text {
  display: block;
}

.math-q {
  color: var(--accent-color);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.checkbox-wrap {
  margin-top: 15px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  display: inline-block;
  position: relative;
  top: 3px;
  height: 22px;
  width: 22px;
  background-color: rgba(10, 15, 28, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--bg-main);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.terms-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.link-highlight {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-highlight:hover {
  color: #fff;
}

/* Footer */
.main-footer {
  background: #050810;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-about {
  color: var(--text-secondary);
  max-width: 400px;
}

.col-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
}

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

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

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

.accent-list-item a {
  color: var(--accent-color);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.9rem;
}

/* Modals & Toasts */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: var(--bg-card);
  border: 1px solid var(--accent-color);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  width: 90%;
  max-width: 700px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-icon-wrap svg {
  width: 40px;
  height: 40px;
  color: var(--accent-color);
}

.cookie-text h4 {
  color: #fff;
  margin-bottom: 5px;
}

.cookie-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cookie-btn {
  background: var(--accent-color);
  color: var(--bg-main);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  flex-shrink: 0;
}

.toast-overlay {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.4s ease;
}

.toast-overlay.show {
  transform: translateX(0);
}

.toast-card {
  background: #10b981;
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .about-layout,
  .growth-container,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text-block {
    text-align: center;
  }
  .hero-text-block p {
    margin: 0 auto 40px;
  }
  .btn-group {
    justify-content: center;
  }
  .about-image {
    order: -1;
  }
  .growth-visual {
    order: -1;
  }
  .consult-banner {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-navigation {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .consult-info h2 {
    font-size: 1.8rem;
  }
  .section-heading {
    font-size: 2.2rem;
  }
  .hero-text-block h1 {
    font-size: 2.8rem;
  }
  .floating-stat {
    position: relative;
    inset: auto;
    transform: none !important;
    animation: none;
    margin-bottom: 10px;
  }
  .stat-top,
  .stat-bottom {
    width: 100%;
    justify-content: center;
  }
  .image-frame {
    display: flex;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .contact-details,
  .form-container {
    padding: 40px 20px;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner {
    bottom: 10px;
    width: 95%;
  }
}

@media (max-width: 480px) {
  .hero-text-block h1 {
    font-size: 2.2rem;
  }
  .action-btn {
    width: 100%;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .timeline::before {
    left: 15px;
  }
  .timeline-item {
    padding-left: 50px;
  }
  .timeline-dot {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  .timeline-content {
    padding: 20px;
  }
  .consult-banner {
    padding: 30px 20px;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
