:root {
  --bg-main: #0a0f25;
  --bg-alt: #111836;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --accent-1: #00f0ff;
  --accent-2: #ff003c;
  --accent-3: #7000ff;
  --glass-bg: rgba(17, 24, 54, 0.6);
  --glass-border: rgba(0, 240, 255, 0.2);
  --font-main:
    system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.alternate-bg {
  background-color: var(--bg-alt);
  position: relative;
}

.alternate-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glass-border),
    transparent
  );
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(to right, #fff, var(--accent-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 1.5rem;
  color: #fff;
}

p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.divider {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 2px;
  margin-top: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(45deg, var(--accent-3), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 0, 60, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255, 0, 60, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-1);
  border: 1px solid var(--accent-1);
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
}

.w-100 {
  width: 100%;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.desktop-nav .nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-1);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

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

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-main);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-header {
  height: 80px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.mobile-logo {
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(to right, #fff, var(--accent-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.close-menu-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-nav-link.special {
  color: var(--accent-1);
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: block;
  }
}

.hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(112, 0, 255, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 30px;
  color: var(--accent-1);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(to right, #fff, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hero-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.visual-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--glass-border);
  border-radius: 20px;
  z-index: 10;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.card-1 {
  top: 20px;
  left: -30px;
}
.card-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 2s;
}

.floating-card i {
  color: var(--accent-1);
}

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

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-actions {
    justify-content: center;
  }
  .card-1 {
    left: 10px;
  }
  .card-2 {
    right: 10px;
  }
}
@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
  }
}

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

.about-text-block {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.about-text-block:hover {
  border-color: var(--glass-border);
  transform: translateY(-5px);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(112, 0, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--accent-3);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

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

.lead-text {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
}

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

.benefit-card {
  background: var(--bg-main);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.b-icon {
  color: var(--accent-2);
  margin-bottom: 15px;
}

.benefit-card h4 {
  margin-bottom: 10px;
  color: #fff;
}

@media (max-width: 992px) {
  .benefits-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.opportunities-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 60px;
  align-items: center;
}

.opp-content {
  flex: 1;
}
.opp-image {
  flex: 1;
}
.opp-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.1);
}

@media (max-width: 992px) {
  .opportunities-layout {
    flex-direction: column;
  }
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.detail-block {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: var(--transition);
}

.detail-block i {
  width: 50px;
  height: 50px;
  color: var(--accent-1);
  margin-bottom: 20px;
}

.detail-block.highlight {
  background: linear-gradient(
    180deg,
    rgba(0, 240, 255, 0.05) 0%,
    transparent 100%
  );
  border-top-color: var(--accent-1);
}

.detail-block:hover {
  background: rgba(255, 255, 255, 0.05);
}

.interactive-box {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.interactive-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-1);
  position: relative;
}

.pulse-circle::before,
.pulse-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-1);
  animation: pulse 2s infinite linear;
}
.pulse-circle::after {
  animation-delay: 1s;
}
.pulse-circle i {
  width: 50px;
  height: 50px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .interactive-box {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}

.access-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.warning-box {
  background: rgba(255, 0, 60, 0.1);
  border-left: 4px solid var(--accent-2);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 30px;
}
.warning-box i {
  color: var(--accent-2);
  flex-shrink: 0;
}
.warning-box span {
  color: #fff;
  font-size: 0.9rem;
}

.access-form-stub {
  background: var(--bg-main);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.stub-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}

@media (max-width: 992px) {
  .access-container {
    grid-template-columns: 1fr;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent-1);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 25px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 10px;
  padding-top: 20px;
}

@media (max-width: 576px) {
  .faq-item summary {
    font-size: 1rem;
    padding: 20px;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-features {
  margin-top: 30px;
}
.contact-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #fff;
}
.contact-features i {
  color: var(--accent-1);
}

.contact-form-container {
  background: var(--bg-main);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}

.input-icon-wrapper {
  position: relative;
}
.input-icon-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 20px;
  height: 20px;
}

.form-group input:not([type="checkbox"]) {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-1);
  background: rgba(0, 240, 255, 0.05);
}

.captcha-box {
  display: flex;
  gap: 15px;
  align-items: center;
}
.captcha-question {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--accent-1);
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.captcha-box input {
  padding-left: 15px !important;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.checkbox-group input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-1);
  cursor: pointer;
}
.terms-label {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  line-height: 1.5;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
}
.terms-label a {
  color: var(--accent-1);
  text-decoration: underline;
  text-decoration-color: rgba(0, 240, 255, 0.5);
  text-underline-offset: 3px;
}
.terms-label a:hover {
  text-decoration-color: var(--accent-1);
}

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

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-form-container {
    padding: 30px 20px;
  }
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo i {
  color: var(--accent-1);
}

.footer-links-group h4,
.footer-contact-info h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.footer-links-group ul li {
  margin-bottom: 12px;
}
.footer-links-group a {
  color: var(--text-muted);
}
.footer-links-group a:hover {
  color: var(--accent-1);
  padding-left: 5px;
}

.special-contact-link {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--accent-2);
}
.special-contact-link:hover {
  color: #fff;
  border-color: #fff;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-contact-info i {
  color: var(--accent-1);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 600px;
  background: var(--bg-alt);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 25px;
  z-index: 5000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-popup.show {
  display: block;
}
.cookie-popup.visible {
  transform: translateY(0);
  opacity: 1;
}

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

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

.cookie-text h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.cookie-text p {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.cookie-text a {
  color: var(--accent-1);
  text-decoration: underline;
}

.cookie-content .btn {
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  .cookie-content {
    flex-direction: column;
  }
  .cookie-content .btn {
    width: 100%;
    margin-top: 15px;
  }
}

.notification-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #10b981;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  z-index: 9999;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-toast.show {
  transform: translateX(0);
}
.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;
  }
}
