:root {
  --c-teal: #0f4c5c;
  --c-teal-light: #166a81;
  --c-terra: #e36414;
  --c-terra-dark: #c2540f;
  --c-sand: #fb8b24;
  --c-bg-light: #fafafa;
  --c-bg-white: #ffffff;
  --c-text-main: #1f2937;
  --c-text-muted: #6b7280;
  --c-border: #e5e7eb;

  --f-head: "Space Grotesk", sans-serif;
  --f-body: "Inter", sans-serif;

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

  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(15, 76, 92, 0.1);
  --shadow-lg: 0 20px 40px rgba(227, 100, 20, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--f-body);
  background-color: var(--c-bg-light);
  color: var(--c-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--rad-md);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-head);
  color: var(--c-teal);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.section-header {
  max-width: 800px;
  margin-bottom: 60px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--c-text-muted);
}
.body-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--c-text-muted);
}
.body-text:last-child {
  margin-bottom: 0;
}

.text-light {
  color: var(--c-bg-white) !important;
}
.text-light-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background-color: var(--c-terra);
  color: var(--c-bg-white);
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 8px 20px rgba(227, 100, 20, 0.3);
}
.btn-primary:hover {
  background-color: var(--c-terra-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(227, 100, 20, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border: 2px solid var(--c-teal);
  color: var(--c-teal);
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  transition: var(--trans);
}
.btn-secondary:hover {
  background-color: var(--c-teal);
  color: var(--c-bg-white);
}
.btn-sm {
  padding: 10px 24px;
  background-color: var(--c-sand);
  color: var(--c-teal);
  font-weight: 600;
  border-radius: 30px;
}
.btn-sm:hover {
  background-color: var(--c-terra);
  color: var(--c-bg-white);
}

/* HEADER */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--trans);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.animated-logo {
  width: 44px;
  height: 44px;
}
.logo-spin {
  transform-origin: center;
  animation: spin 8s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.brand-title {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-teal);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--c-text-main);
  font-size: 0.95rem;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-terra);
  transition: var(--trans);
}
.nav-link:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--c-teal);
  cursor: pointer;
  padding: 8px;
  transition: var(--trans);
}
.burger-menu:hover {
  color: var(--c-terra);
}

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--c-teal);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  transform: translateY(-20px);
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.close-menu {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--c-bg-white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--trans);
}
.close-menu:hover {
  background: var(--c-terra);
  transform: rotate(90deg);
}
.mobile-nav-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  overflow-y: auto;
  padding: 40px;
}
.mobile-link {
  font-family: var(--f-head);
  font-size: 1.2rem;
  color: var(--c-bg-white);
  font-weight: 600;
  transition: var(--trans);
}
.mobile-link:hover {
  color: var(--c-sand);
  transform: scale(1.05);
}
.mobile-link.highlight {
  color: var(--c-terra);
  margin-top: 20px;
  font-size: 2.2rem;
}

/* HERO */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(227, 100, 20, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(15, 76, 92, 0.1);
  color: var(--c-teal);
  font-family: var(--f-head);
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 76, 92, 0.2);
}
.hero-heading {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 24px;
}
.hero-heading span {
  color: var(--c-terra);
}
.hero-text {
  font-size: 1.15rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.main-img {
  box-shadow: var(--shadow-lg);
}
.floating-card {
  position: absolute;
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  padding: 20px 30px;
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--c-terra);
}
.top-card {
  bottom: -30px;
  left: -30px;
}
.floating-card i {
  color: var(--c-sand);
  width: 32px;
  height: 32px;
}
.floating-card span {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.blob-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--c-sand);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: -1;
  opacity: 0.2;
  animation: blob 8s ease-in-out infinite alternate;
}
@keyframes blob {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  100% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* CASES BENTO */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.bento-item {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  padding: 40px;
  border-radius: var(--rad-lg);
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.bento-item:hover {
  transform: translateY(-5px);
  border-color: var(--c-teal);
  box-shadow: var(--shadow-md);
}
.wide-item {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--c-bg-white), #f0f4f5);
}
.icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(227, 100, 20, 0.1);
  border-radius: var(--rad-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-terra);
  margin-bottom: 24px;
}
.bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* INCOME (DARK) */
.income-section {
  background: var(--c-teal);
}
.income-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.glass-card {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rad-lg);
}
.glass-img {
  border-radius: var(--rad-md);
}
.overlay-stats {
  position: absolute;
  top: 40px;
  right: -30px;
  background: var(--c-bg-white);
  padding: 20px;
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  color: var(--c-teal);
  border-bottom: 4px solid var(--c-sand);
}
.overlay-stats i {
  color: var(--c-terra);
  width: 28px;
  height: 28px;
}

/* REGION */
.region-box {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  padding: 80px;
  display: flex;
  gap: 60px;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.region-box::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 139, 36, 0.1));
  z-index: 0;
}
.region-icon {
  width: 100px;
  height: 100px;
  background: var(--c-teal);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-bg-white);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(15, 76, 92, 0.3);
}
.region-icon i {
  width: 48px;
  height: 48px;
}
.region-text-wrap {
  position: relative;
  z-index: 1;
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
}
.steps-grid::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-border);
  z-index: 0;
}
.step-card {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  padding: 40px;
  border-radius: var(--rad-lg);
  position: relative;
  z-index: 1;
  transition: var(--trans);
}
.step-card:hover {
  border-color: var(--c-terra);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 80px;
  height: 80px;
  background: var(--c-bg-light);
  border: 2px solid var(--c-teal);
  color: var(--c-teal);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 30px;
  transition: var(--trans);
}
.step-card:hover .step-number {
  background: var(--c-teal);
  color: var(--c-bg-white);
}
.step-card h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.step-card p {
  text-align: center;
}

/* SUPPORT */
.support-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}
.support-visual {
  position: relative;
  flex: 1 1 500px;
}
.support-content {
  flex: 1 1 500px;
}
.circle-decoration {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 80%;
  height: 80%;
  border: 2px dashed var(--c-terra);
  border-radius: 50%;
  z-index: -1;
  animation: spin 20s linear infinite;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-md);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item:hover {
  border-color: var(--c-teal);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: none;
  border: none;
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-teal);
  cursor: pointer;
  text-align: left;
}
.faq-question i {
  color: var(--c-terra);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--c-teal);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-content {
  padding: 0 30px 30px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.contact-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(15, 76, 92, 0.1);
  border-radius: var(--rad-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-teal);
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-family: var(--f-head);
  font-size: 1.1rem;
  color: var(--c-teal);
  margin-bottom: 4px;
}
.contact-detail span {
  color: var(--c-text-muted);
}

.form-wrapper {
  background: var(--c-bg-white);
  border: 1px solid var(--c-border);
  padding: 50px;
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--c-terra);
}
.form-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-group label {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text-main);
}
.input-relative {
  position: relative;
  display: flex;
  align-items: center;
}
.input-relative i {
  position: absolute;
  left: 16px;
  color: var(--c-text-muted);
  width: 20px;
  height: 20px;
}
.input-relative input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-sm);
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text-main);
  transition: var(--trans);
}
.input-relative input:focus {
  outline: none;
  border-color: var(--c-teal);
  background: var(--c-bg-white);
  box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1);
}
.captcha-group {
  padding-top: 16px;
  border-top: 1px dashed var(--c-border);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.checkbox-group input {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  accent-color: var(--c-terra);
  cursor: pointer;
  flex-shrink: 0;
}
.legal-label {
  font-size: 0.9rem !important;
  color: var(--c-text-muted) !important;
  font-weight: 400 !important;
  cursor: pointer;
  line-height: 1.5;
}
.legal-link {
  color: var(--c-teal);
  text-decoration: underline;
  font-weight: 600;
}
.legal-link:hover {
  color: var(--c-terra);
}
.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--c-teal);
  color: var(--c-bg-white);
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--rad-sm);
  cursor: pointer;
  transition: var(--trans);
  margin-top: 10px;
}
.btn-submit:hover {
  background: var(--c-teal-light);
}

/* FOOTER */
.main-footer {
  background: var(--c-teal);
  color: var(--c-bg-white);
  padding: 80px 0 0;
}
.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  margin-bottom: 24px;
  display: inline-flex;
}
.footer-svg .logo-path {
  stroke: var(--c-sand);
}
.footer-svg circle {
  fill: var(--c-bg-white);
}
.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 350px;
}
.footer-title {
  color: var(--c-bg-white);
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--trans);
}
.footer-nav a:hover {
  color: var(--c-sand);
}
.footer-contacts p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.footer-contacts i {
  color: var(--c-terra);
  width: 18px;
  height: 18px;
}
.highlight-contact {
  color: var(--c-sand) !important;
  font-weight: 700;
  text-decoration: underline;
  font-family: var(--f-head);
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: inline-block;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* COOKIE */
.cookie-popup {
  position: fixed;
  bottom: -150%;
  left: 0;
  width: 100%;
  background: var(--c-bg-white);
  z-index: 3000;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--c-terra);
  padding: 24px 0;
  transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-popup.show {
  bottom: 0;
}
.cookie-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 400px;
}
.cookie-icon {
  background: rgba(227, 100, 20, 0.1);
  color: var(--c-terra);
  padding: 16px;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
}
.cookie-text h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--c-teal);
}
.cookie-text p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 24px;
  }
  .desktop-nav {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .hero-grid,
  .about-layout,
  .income-layout,
  .support-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-content,
  .about-content,
  .income-content,
  .support-content,
  .contact-info {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .about-visual,
  .income-visual,
  .support-visual {
    order: -1;
    margin: 0 auto;
  }
  .top-card {
    bottom: -20px;
    left: 20px;
  }
  .overlay-stats {
    right: 20px;
    top: -20px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .wide-item {
    grid-column: auto;
  }
  .region-box {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }
  .steps-grid::after {
    display: none;
  }
  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  .hero-section {
    padding-top: 100px;
  }
  .hero-heading {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
  .form-wrapper {
    padding: 30px 20px;
  }
  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-desc {
    margin: 16px auto 0;
  }
  .footer-contacts p {
    justify-content: center;
  }
  .cookie-container {
    flex-direction: column;
    text-align: center;
  }
  .cookie-content {
    flex-direction: column;
  }
  #accept-cookies {
    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;
  }
}
