:root {
  --col-bg-dark: #0f172a; /* Deep Navy */
  --col-bg-dark-alt: #1e293b; /* Lighter Navy */
  --col-bg-light: #f8fafc; /* Slate 50 */
  --col-bg-white: #ffffff;

  --col-accent-primary: #7c3aed; /* Violet */
  --col-accent-secondary: #3b82f6; /* Blue */
  --col-accent-hover: #6d28d9;

  --col-text-white: #f8fafc;
  --col-text-gray: #94a3b8;
  --col-text-dark: #0f172a;
  --col-text-muted: #475569;

  --col-border: #334155;
  --col-border-light: #e2e8f0;

  --font-head: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.4);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);

  --trans-fast: 0.2s ease;
  --trans-base: 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background-color: var(--col-bg-white);
  color: var(--col-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans-base);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
}
.bg-light {
  background-color: var(--col-bg-light);
}
.bg-dark-alt {
  background-color: var(--col-bg-dark-alt);
}
.text-center {
  text-align: center;
}
.center-align {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.text-white {
  color: var(--col-text-white) !important;
}
.text-gray {
  color: var(--col-text-gray) !important;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--col-text-dark);
}
.section-header {
  max-width: 800px;
  margin-bottom: 60px;
}
.section-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-body {
  font-size: 1.1rem;
  color: var(--col-text-muted);
  margin-bottom: 24px;
}
.bg-dark-alt .section-heading {
  color: var(--col-text-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--trans-base);
  border: 2px solid transparent;
  gap: 8px;
}
.btn-glow {
  background: linear-gradient(
    135deg,
    var(--col-accent-primary),
    var(--col-accent-secondary)
  );
  color: #fff;
  box-shadow: var(--shadow-glow);
  border: none;
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.6);
}
.btn-outline-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--col-border-light);
  z-index: 1000;
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 40px;
  height: 40px;
}
.node-glow {
  animation: pulseNode 2s infinite alternate;
}
@keyframes pulseNode {
  0% {
    opacity: 0.5;
    r: 5;
  }
  100% {
    opacity: 1;
    r: 7;
  }
}
.brand-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--col-text-dark);
  letter-spacing: -0.5px;
}

.nav-desktop .nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-item {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--col-text-muted);
}
.nav-item:hover {
  color: var(--col-accent-primary);
}
.nav-button {
  background-color: var(--col-text-dark);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-button:hover {
  background-color: var(--col-accent-primary);
}

.burger-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--col-text-dark);
  cursor: pointer;
}

.fullscreen-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--col-bg-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}
.fullscreen-mobile-menu.active {
  transform: translateY(0);
}
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--col-border);
}
.mobile-menu-top .brand-text {
  color: #fff;
}
.close-menu-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.mobile-menu-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.mobile-nav-item {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.mobile-nav-cta {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--col-accent-secondary);
}

.hero-glass {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 100px;
  display: flex;
  align-items: center;
  background-color: var(--col-bg-dark);
  overflow: hidden;
}
.animated-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.shape-1 {
  width: 40vw;
  height: 40vw;
  background: var(--col-accent-primary);
  top: -10%;
  left: -10%;
  animation: floatShape 10s infinite alternate;
}
.shape-2 {
  width: 35vw;
  height: 35vw;
  background: var(--col-accent-secondary);
  bottom: -10%;
  right: -5%;
  animation: floatShape 12s infinite alternate-reverse;
}
.shape-3 {
  width: 30vw;
  height: 30vw;
  background: #e11d48;
  top: 40%;
  left: 40%;
  opacity: 0.3;
  animation: floatShape 15s infinite alternate;
}
@keyframes floatShape {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.hero-glass-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}
.glass-panel {
  flex: 1.2;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.pill-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: #fff;
  margin-bottom: 24px;
}
.hero-title span {
  background: linear-gradient(to right, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--col-text-gray);
  margin-bottom: 20px;
}
.hero-btn-group {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.floating-elements {
  flex: 0.8;
  position: relative;
  height: 400px;
}
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  width: 300px;
  animation: hoverCard 6s infinite ease-in-out;
}
.card-top {
  top: 20%;
  right: 0;
  animation-delay: 0s;
}
.card-bottom {
  bottom: 20%;
  left: 0;
  animation-delay: 3s;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
}
@keyframes hoverCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.float-card i {
  width: 40px;
  height: 40px;
  color: var(--col-accent-secondary);
}
.card-bottom i {
  color: var(--col-accent-primary);
}
.float-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.float-card span {
  color: var(--col-text-gray);
  font-size: 0.9rem;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.reverse-layout {
  flex-direction: row-reverse;
}
.split-visual {
  flex: 1 1 400px;
  position: relative;
}
.split-visual img {
  box-shadow: var(--shadow-card);
}
.split-text {
  flex: 1 1 500px;
}
.overlay-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--col-bg-dark);
  color: #fff;
  padding: 20px 30px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  font-family: var(--font-head);
  font-weight: 700;
}
.overlay-stat i {
  color: var(--col-accent-secondary);
}

.grid-layout-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.feature-card-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--radius-md);
  transition: var(--trans-base);
}
.feature-card-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.5);
}
.icon-sphere {
  width: 64px;
  height: 64px;
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 24px;
}
.feature-card-glass h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.region-focus-box {
  background: var(--col-bg-dark);
  padding: 80px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--col-border);
}
.region-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--col-accent-primary),
    var(--col-accent-secondary)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  color: #fff;
}
.region-icon-wrap i {
  width: 40px;
  height: 40px;
}
.region-details {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: left;
  column-count: 2;
  column-gap: 40px;
  color: var(--col-text-gray);
  font-size: 1.05rem;
}

.stepper-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}
.step-icon {
  width: 70px;
  height: 70px;
  background: var(--col-bg-white);
  border: 2px solid var(--col-accent-secondary);
  color: var(--col-accent-secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-card);
}
.step-icon i {
  width: 32px;
  height: 32px;
}
.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--col-text-dark);
}
.step-card p {
  color: var(--col-text-muted);
  font-size: 0.95rem;
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--col-border-light);
  margin-top: 35px;
  z-index: 1;
}

.action-banner {
  background: linear-gradient(
    135deg,
    var(--col-bg-dark),
    var(--col-bg-dark-alt)
  );
  padding: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
}
.banner-content {
  flex: 1 1 500px;
}
.banner-content h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.banner-content p {
  color: var(--col-text-gray);
  font-size: 1.1rem;
}
.banner-action {
  flex: 0 0 auto;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion-panel {
  background: var(--col-bg-white);
  border: 1px solid var(--col-border-light);
  border-radius: var(--radius-sm);
}
.accordion-trigger {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.trigger-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--col-text-dark);
}
.trigger-icon {
  color: var(--col-accent-primary);
  transition: transform 0.3s;
}
.accordion-panel.active .trigger-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.content-pad {
  padding: 0 24px 24px;
  color: var(--col-text-muted);
}
.content-pad p {
  margin-bottom: 16px;
}
.content-pad p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: var(--col-bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 60px;
  box-shadow: var(--shadow-glow);
}
.contact-data-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-data-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-data-list i {
  width: 28px;
  height: 28px;
  color: var(--col-accent-secondary);
  margin-top: 2px;
}
.contact-data-list strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.contact-data-list span {
  color: var(--col-text-gray);
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}
.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon-wrap i {
  position: absolute;
  left: 16px;
  color: var(--col-text-gray);
  width: 20px;
  height: 20px;
}
.input-icon-wrap input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--col-border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--trans-fast);
}
.input-icon-wrap input:focus {
  outline: none;
  border-color: var(--col-accent-primary);
  background: rgba(0, 0, 0, 0.4);
}
.captcha-block {
  padding-top: 16px;
  border-top: 1px solid var(--col-border);
}
.checkbox-block {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.checkbox-block input {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  accent-color: var(--col-accent-primary);
  cursor: pointer;
  flex-shrink: 0;
}
.terms-label {
  font-size: 0.85rem !important;
  color: var(--col-text-gray) !important;
  line-height: 1.6;
  cursor: pointer;
  white-space: normal;
}
.policy-link {
  color: var(--col-accent-secondary);
  text-decoration: underline;
  font-weight: 600;
}
.full-width-btn {
  width: 100%;
  margin-top: 10px;
  padding: 18px;
}

.site-footer {
  background: var(--col-bg-white);
  border-top: 1px solid var(--col-border-light);
  padding: 80px 0 30px;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-about {
  color: var(--col-text-muted);
  font-size: 0.95rem;
  max-width: 320px;
}
.footer-heading {
  color: var(--col-text-dark);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.footer-nav li,
.footer-contact-info li {
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--col-text-muted);
}
.footer-nav a:hover {
  color: var(--col-accent-primary);
}
.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--col-text-muted);
}
.footer-contact-info i {
  color: var(--col-accent-primary);
  margin-top: 2px;
}
.highlight-contact {
  color: var(--col-accent-primary) !important;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 10px;
  display: inline-block;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--col-border-light);
  padding-top: 30px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.cookie-popup-overlay {
  position: fixed;
  bottom: -150%;
  left: 0;
  width: 100%;
  background: var(--col-bg-dark-alt);
  padding: 24px 0;
  z-index: 3000;
  transition: bottom 0.5s ease-out;
  border-top: 4px solid var(--col-accent-primary);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}
.cookie-popup-overlay.show {
  bottom: 0;
}
.cookie-dialog {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cookie-message {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 400px;
}
.cookie-icon-box {
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
  padding: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cookie-text-box h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.cookie-text-box p {
  color: var(--col-text-gray);
  font-size: 0.9rem;
}
.cookie-text-box a {
  color: var(--col-accent-secondary);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  .burger-menu-btn {
    display: block;
  }
  .hero-glass-container {
    flex-direction: column;
    text-align: center;
  }
  .floating-elements {
    display: none;
  }
  .glass-panel {
    padding: 40px;
  }
  .hero-btn-group {
    justify-content: center;
  }

  .stepper-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .step-line {
    width: 2px;
    height: 50px;
    margin: 0;
  }

  .region-details {
    column-count: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    height: 70px;
  }
  .hero-glass {
    padding-top: 120px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section {
    padding: 80px 0;
  }
  .split-layout {
    flex-direction: column;
    gap: 40px;
  }
  .split-visual {
    width: 100%;
  }
  .overlay-stat {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
  }

  .action-banner {
    padding: 40px 24px;
    text-align: center;
    justify-content: center;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand,
  .footer-contact-info li {
    justify-content: center;
  }
  .footer-about {
    margin: 16px auto 0;
  }

  .cookie-dialog {
    flex-direction: column;
    text-align: center;
  }
  .cookie-message {
    flex-direction: column;
  }
  #cookie-accept-btn {
    width: 100%;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  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 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    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;
  }
}
