:root {
  /* Color Palette */
  --c-violet: #1a0b2e;
  --c-violet-light: #2a154a;
  --c-coral: #ff6b6b;
  --c-coral-hover: #e55a5a;
  --c-mint: #4ecdc4;
  --c-mint-hover: #3ebcb3;
  --c-cream: #f7f7f7;
  --c-white: #ffffff;
  --c-text-main: #2d3436;
  --c-text-muted: #636e72;
  --c-error: #d63031;

  /* Typography */
  --f-heading: "Poppins", sans-serif;
  --f-body: "Lora", serif;

  /* Layout */
  --transition-base: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-rad: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--f-body);
  background-color: var(--c-cream);
  color: var(--c-text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding {
  padding: 120px 0;
}
.text-center {
  text-align: center;
}
.w-full {
  width: 100%;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-width-900 {
  max-width: 900px;
}

.bg-dark {
  background-color: var(--c-violet);
}
.bg-mint {
  background-color: rgba(78, 205, 196, 0.1);
}
.bg-light-purple {
  background-color: rgba(26, 11, 46, 0.05);
}
.text-light {
  color: var(--c-white) !important;
}
.text-muted {
  color: var(--c-text-muted);
}
.text-muted-light {
  color: rgba(255, 255, 255, 0.7);
}
.large-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
}
.text-body {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--c-text-muted);
}

/* Typography */
.section-title {
  font-family: var(--f-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-violet);
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -1px;
}
.section-desc {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 400;
}

/* Buttons */
.btn-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--c-coral);
  color: var(--c-white);
  font-family: var(--f-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-rad);
  border: 2px solid var(--c-coral);
  transition: var(--transition-base);
}
.btn-coral:hover {
  background-color: transparent;
  color: var(--c-coral);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
}

.btn-mint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--c-mint);
  color: var(--c-violet);
  font-family: var(--f-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-rad);
  border: 2px solid var(--c-mint);
  transition: var(--transition-base);
}
.btn-mint:hover {
  background-color: transparent;
  color: var(--c-mint);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(78, 205, 196, 0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: transparent;
  color: var(--c-white);
  font-family: var(--f-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-rad);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-base);
}
.btn-outline:hover {
  background-color: var(--c-white);
  color: var(--c-violet);
  border-color: var(--c-white);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-base);
  border-bottom: 1px solid transparent;
}
.main-header.scrolled {
  background: rgba(247, 247, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  transition: height 0.3s ease;
}
.main-header.scrolled .header-container {
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
}
.main-header.scrolled .brand-logo {
  color: var(--c-violet);
}
.brand-logo svg {
  width: 36px;
  height: 36px;
  color: var(--c-mint);
}
.brand-name {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.desktop-navigation ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
.desktop-navigation a {
  font-family: var(--f-heading);
  font-weight: 600;
  color: var(--c-white);
  font-size: 1rem;
  position: relative;
}
.main-header.scrolled .desktop-navigation a {
  color: var(--c-text-main);
}
.nav-active-mark a {
  color: var(--c-coral) !important;
}
.desktop-navigation a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-coral);
  transition: var(--transition-base);
}
.desktop-navigation a:hover::after {
  width: 100%;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 2000;
}
.h-line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--c-white);
  border-radius: 2px;
  transition: var(--transition-base);
}
.main-header.scrolled .h-line {
  background-color: var(--c-violet);
}

/* Mobile Menu (Fullscreen, strictly trapping focus/scroll) */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--c-violet);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  overflow-y: auto;
  background: var(--c-violet);
}
.mobile-menu.open {
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.mobile-menu-label {
  font-family: var(--f-heading);
  color: var(--c-mint);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
}
.close-menu-btn {
  color: var(--c-white);
  padding: 10px;
  transition: var(--transition-base);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.close-menu-btn:hover {
  color: var(--c-coral);
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.1);
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-link svg {
  color: var(--c-mint);
  width: 24px;
  height: 24px;
}
.mobile-link:hover {
  color: var(--c-coral);
  padding-left: 10px;
}
.mobile-cta-wrapper {
  margin-top: 40px;
}

@media (max-width: 992px) {
  .desktop-navigation {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 120vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero-shadow-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(26, 11, 46, 0.95) 0%,
    rgba(26, 11, 46, 0.7) 100%
  );
}
.hero-content-area {
  position: relative;
  z-index: 1;
}
.hero-text-box {
  max-width: 800px;
}
.accent-pill {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid var(--c-mint);
  color: var(--c-mint);
  font-family: var(--f-heading);
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-title {
  font-family: var(--f-heading);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.main-title span {
  color: var(--c-mint);
  position: relative;
  display: inline-block;
}
.main-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--c-coral);
  z-index: -1;
}
.main-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-action-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Grid Layouts */
.grid-layout-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reverse-grid .visual-side {
  order: -1;
}

/* Concept Visual */
.svg-art-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.svg-art-container svg {
  width: 100%;
  max-width: 450px;
}
.spin-animation {
  transform-origin: center;
  animation: spina 25s linear infinite;
}
.pulse-animation {
  transform-origin: center;
  animation: pulsea 4s ease-in-out infinite alternate;
}
@keyframes spina {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulsea {
  0% {
    transform: scale(0.95) rotate(-5deg);
  }
  100% {
    transform: scale(1.05) rotate(5deg);
  }
}

/* Practice Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  border-radius: var(--border-rad);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--c-mint);
  transform: scaleY(0);
  transition: var(--transition-base);
  transform-origin: bottom;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}
.feature-card:hover::before {
  transform: scaleY(1);
}
.span-full {
  grid-column: span 3;
  background: linear-gradient(
    135deg,
    rgba(78, 205, 196, 0.1) 0%,
    transparent 100%
  );
}
.card-icon {
  width: 70px;
  height: 70px;
  background: var(--c-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--c-white);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}
.span-full .card-icon {
  background: var(--c-mint);
  color: var(--c-violet);
  box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
}
.card-icon svg {
  width: 32px;
  height: 32px;
}
.card-title {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  color: var(--c-white);
  margin-bottom: 15px;
  font-weight: 700;
}
.card-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

/* Finance Stack */
.image-composite {
  position: relative;
  padding: 20px;
}
.image-composite img {
  border-radius: var(--border-rad);
  box-shadow: 0 20px 50px rgba(26, 11, 46, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--c-violet);
  color: var(--c-white);
  padding: 25px 35px;
  border-radius: var(--border-rad);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(26, 11, 46, 0.3);
  border-left: 5px solid var(--c-mint);
  animation: floatup 4s ease-in-out infinite;
}
.floating-badge svg {
  width: 40px;
  height: 40px;
  color: var(--c-mint);
}
.badge-text {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
@keyframes floatup {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Geography */
.geo-icon-wrapper {
  width: 100px;
  height: 100px;
  background: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-coral);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.geo-icon-wrapper svg {
  width: 48px;
  height: 48px;
}
.compliance-box {
  display: flex;
  gap: 24px;
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 35px;
  border-radius: var(--border-rad);
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-top: 4px solid var(--c-coral);
}
.compliance-icon svg {
  color: var(--c-coral);
  width: 36px;
  height: 36px;
}
.compliance-text strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.2rem;
  color: var(--c-violet);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.compliance-text p {
  margin: 0;
  color: var(--c-text-muted);
  font-family: var(--f-body);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step-counter;
}
.step-card {
  background: var(--c-white);
  padding: 50px 40px;
  border-radius: var(--border-rad);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-base);
}
.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 11, 46, 0.08);
  border-color: rgba(26, 11, 46, 0.1);
}
.step-indicator {
  position: absolute;
  top: -30px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: var(--c-violet);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: 12px;
  transform: rotate(-10deg);
  transition: var(--transition-base);
}
.step-card:hover .step-indicator {
  transform: rotate(0deg) scale(1.1);
  background: var(--c-coral);
}
.step-title {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  color: var(--c-violet);
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: 700;
}
.step-desc {
  color: var(--c-text-muted);
  font-size: 1.05rem;
}

/* Mentorship */
.mentorship-section {
  position: relative;
}
.mentorship-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(78, 205, 196, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* FAQ */
.accordion-container {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-violet);
  text-align: left;
}
.accordion-head svg {
  color: var(--c-coral);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 50%;
  padding: 4px;
}
.accordion-block.active .accordion-head svg {
  transform: rotate(45deg);
  background: var(--c-coral);
  color: var(--c-white);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body p {
  padding-bottom: 30px;
  color: var(--c-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  padding-right: 40px;
}

/* Contact Form */
.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.info-icon {
  width: 56px;
  height: 56px;
  background: var(--c-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-mint);
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.info-icon svg {
  width: 28px;
  height: 28px;
}
.info-text h5 {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  color: var(--c-violet);
  margin-bottom: 5px;
  font-weight: 700;
}
.info-text span {
  color: var(--c-text-muted);
  font-size: 1.05rem;
}

.form-container {
  background: var(--c-white);
  padding: 50px;
  border-radius: var(--border-rad);
  box-shadow: 0 30px 80px rgba(26, 11, 46, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.form-title {
  font-family: var(--f-heading);
  font-size: 2rem;
  color: var(--c-violet);
  margin-bottom: 35px;
  font-weight: 800;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
}
.input-wrapper {
  margin-bottom: 28px;
  position: relative;
}
.input-wrapper label:not(.custom-checkbox-label) {
  display: block;
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-violet);
  margin-bottom: 10px;
}
.custom-form input[type="text"],
.custom-form input[type="tel"],
.custom-form input[type="email"],
.custom-form input[type="number"] {
  width: 100%;
  padding: 18px 20px;
  background: var(--c-cream);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text-main);
  transition: var(--transition-base);
}
.custom-form input:focus {
  outline: none;
  border-color: var(--c-mint);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.15);
}
.math-highlight {
  color: var(--c-coral);
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--f-heading);
}

.checkbox-wrapper {
  margin-top: 15px;
}
.custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
}
.custom-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox-box {
  position: relative;
  top: 5px;
  width: 24px;
  height: 24px;
  background: var(--c-cream);
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  flex-shrink: 0;
  transition: var(--transition-base);
}
.custom-checkbox-label input:checked ~ .custom-checkbox-box {
  background: var(--c-coral);
  border-color: var(--c-coral);
}
.custom-checkbox-box:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox-label input:checked ~ .custom-checkbox-box:after {
  display: block;
}
.custom-checkbox-text {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.form-link {
  color: var(--c-violet);
  text-decoration: underline;
  font-weight: 600;
}
.form-link:hover {
  color: var(--c-coral);
}

.error-feedback {
  display: none;
  color: var(--c-error);
  font-size: 0.9rem;
  margin-top: 8px;
  font-weight: 600;
  font-family: var(--f-heading);
}
.input-wrapper.has-error input {
  border-color: var(--c-error);
}
.input-wrapper.has-error .error-feedback {
  display: block;
}

/* Footer */
.main-footer {
  background: var(--c-violet);
  color: var(--c-white);
  padding: 100px 0 40px;
  border-top: 6px solid var(--c-coral);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-logo {
  margin-bottom: 24px;
}
.footer-logo svg {
  color: var(--c-coral);
}
.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 380px;
}
.footer-heading {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  color: var(--c-mint);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.footer-links,
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links a,
.footer-contact-info li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}
.footer-links a:hover {
  color: var(--c-white);
  padding-left: 8px;
}
.accent-link a {
  color: var(--c-coral) !important;
  font-weight: 700;
  text-decoration: underline;
}
.footer-contact-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact-info i {
  color: var(--c-mint);
  width: 20px;
  height: 20px;
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  font-family: var(--f-heading);
}

/* Modals & Toasts */
.toast-wrapper {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--c-violet);
  color: var(--c-white);
  padding: 20px 30px;
  border-radius: var(--border-rad);
  font-family: var(--f-heading);
  font-weight: 600;
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 40px rgba(26, 11, 46, 0.4);
  border-left: 6px solid var(--c-mint);
}
.toast-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}
.toast-inner i {
  color: var(--c-mint);
  width: 24px;
  height: 24px;
}
.toast-wrapper.show {
  transform: translateX(0);
}

.cookie-popup {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 9999;
  width: 90%;
  max-width: 700px;
  background: var(--c-white);
  padding: 30px;
  border-radius: var(--border-rad);
  box-shadow: 0 30px 80px rgba(26, 11, 46, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-popup.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-container {
  display: flex;
  gap: 30px;
  align-items: center;
}
.cookie-icon-wrapper i {
  width: 56px;
  height: 56px;
  color: var(--c-coral);
}
.cookie-text-wrapper h3 {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  color: var(--c-violet);
  margin-bottom: 10px;
  font-weight: 800;
}
.cookie-text-wrapper p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .grid-layout-2 {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .reverse-grid .visual-side {
    order: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .span-full {
    grid-column: span 1;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-left: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 28px;
  }
  .section-padding {
    padding: 80px 0;
  }
  .form-container {
    padding: 40px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand-col {
    align-items: center;
  }
  .footer-contact-info li {
    justify-content: center;
  }
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
}

.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(--ink);
  margin-bottom: 40px;
  margin-top: 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(--ink);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px !important;
    margin-top: 30px;
  }
  .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;
  }
}
