:root {
  --bg-dark: #0b0c10;
  --bg-card: #1f2833;
  --text-main: #c5c6c7;
  --text-bright: #ffffff;
  --accent-primary: #66fcf1;
  --accent-secondary: #45a29e;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-main:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Background Noise Texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-light {
  color: var(--bg-dark);
}

.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(102, 252, 241, 0.3);
}

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

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

.btn-outline:hover {
  background-color: var(--accent-secondary);
  color: var(--bg-dark);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-neon {
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-neon:hover {
  background-color: var(--accent-primary);
  color: var(--bg-dark);
  box-shadow: 0 0 10px var(--accent-primary);
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(102, 252, 241, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    transform-origin: center;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
    transform-origin: center;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    transform-origin: center;
  }
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 1rem;
}

.nav-link {
  font-weight: 500;
  position: relative;
}

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

.nav-link:hover {
  color: var(--text-bright);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.burger-btn,
.close-btn {
  display: none;
  background: none;
  border: none;
  color: var(--accent-primary);
  cursor: pointer;
}

.mobile-nav-header {
  display: none;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-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.3;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-primary);
  bottom: 10%;
  left: -50px;
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(69, 162, 158, 0.1);
  border: 1px solid var(--accent-secondary);
  color: var(--accent-primary);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 12px;
}

.main-image {
  border-radius: 12px;
  border: 1px solid rgba(102, 252, 241, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.floating-card {
  position: absolute;
  background: rgba(31, 40, 51, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 252, 241, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  color: var(--accent-primary);
  width: 32px;
  height: 32px;
}

.floating-card strong {
  display: block;
  color: var(--text-bright);
  font-size: 1.2rem;
}

.floating-card span {
  font-size: 0.8rem;
  color: var(--text-main);
}

.float-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.float-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 3s;
}

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

/* Sections Global */
section {
  padding: 100px 0;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 12px;
  border: 1px solid var(--bg-card);
  box-shadow: -15px 15px 0 var(--bg-card);
}

/* Methodology Grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.method-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border-top: 3px solid transparent;
  transition: all var(--transition);
}

.method-card:hover {
  border-top-color: var(--accent-primary);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(69, 162, 158, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

.card-title {
  color: var(--text-bright);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Career Section */
.career-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.career-image {
  position: relative;
}

.career-image img {
  border-radius: 12px;
  opacity: 0.8;
}

.overlay-stats {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
}

.stat-item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent-primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.stat-val {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
}

/* Europe Access */
.europe-wrapper {
  background: var(--accent-primary);
  border-radius: 16px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.europe-text .section-title {
  color: var(--bg-dark);
}

.europe-text .section-desc {
  color: var(--bg-card);
  font-weight: 500;
}

.huge-icon {
  width: 100%;
  height: 100%;
  max-height: 300px;
  color: var(--bg-dark);
  opacity: 0.8;
}

/* Start Steps */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bg-card);
  z-index: 0;
}

.step-box {
  background: var(--bg-dark);
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: absolute;
  top: -30px;
  left: 0;
}

.step-title {
  color: var(--text-bright);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

/* Assessment */
.assessment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mockup-window {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header {
  background: #111;
  padding: 10px 15px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f56;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #27c93f;
}

.mockup-body {
  padding: 3rem 2rem;
  text-align: center;
}

.mockup-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-secondary);
  margin-bottom: 1.5rem;
}

.mockup-body h4 {
  color: var(--text-bright);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--accent-secondary);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  color: var(--text-bright);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: var(--accent-primary);
  transition: transform var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Contact Form */
.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-item i {
  color: var(--accent-primary);
}

.detail-item strong {
  display: block;
  color: var(--text-bright);
}

.contact-form-wrapper {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--text-bright);
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 14px;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-bright);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input {
  margin-top: 4px;
  accent-color: var(--accent-primary);
}

.long-label {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
  /* Strict requirement: long text without wrapping on PC */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
}

.long-label a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.submit-btn {
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: #060709;
  padding: 80px 0 20px;
  border-top: 1px solid rgba(102, 252, 241, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-title {
  color: var(--text-bright);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

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

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-contact-info i {
  color: var(--accent-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 50px;
}

/* Cookie Pop-up */
.cookie-popup {
  position: fixed;
  bottom: -150%;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  padding: 1.5rem 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid var(--accent-primary);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cookie-text i {
  color: var(--accent-primary);
  width: 32px;
  height: 32px;
}

.cookie-text h4 {
  color: var(--text-bright);
  margin-bottom: 0.2rem;
}

.cookie-text p {
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--accent-primary);
  text-decoration: underline;
}

#accept-cookie {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-container,
  .about-container,
  .career-container,
  .assessment-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  .hero-visual,
  .about-image,
  .career-image,
  .assessment-form-mockup {
    order: -1;
  }
  .europe-wrapper {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }
  .europe-map {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Let long label wrap on smaller screens so it doesn't break layout */
  .long-label {
    white-space: normal;
  }
}

@media (max-width: 1100px) {
  .header-actions {
    display: none;
  }
  .burger-btn {
    display: block;
  }
  .header-container {
    height: 70px;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1001;
    flex-direction: column;
    padding: 1.5rem;
    transition: right var(--transition);
    overflow-y: auto;
  }

  .navigation.active {
    right: 0;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
  }

  .mobile-title {
    font-weight: 800;
    color: var(--text-bright);
    font-size: 1.2rem;
  }

  .close-btn {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-link {
    font-size: 1.2rem;
    display: block;
  }

  .header .header-actions {
    display: flex;
  }
  .header .header-actions .btn-neon {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }
  .steps-timeline::before {
    display: none;
  }
  .step-num {
    position: relative;
    top: 0;
    margin-bottom: 1rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .footer-contact-info li {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-text {
    flex-direction: column;
  }
}

.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: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 22px;
    margin-top: 25px;
  }
  .margin {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .pages {
    padding: 90px 0 50px;
  }
  .pages h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .text-wrapper {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .text-wrapper h2 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .text-wrapper h3 {
    font-size: 16px;
  }
  .text-wrapper p {
    font-size: 13px;
    line-height: 1.6;
  }
  .margin {
    font-size: 24px;
    margin: 80px 0 30px;
  }
  .split-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .pages {
    padding: 80px 0 40px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .text-wrapper {
    padding: 15px 10px;
  }
  .text-wrapper h2 {
    font-size: 16px;
    margin-top: 15px;
  }
  .text-wrapper h3 {
    font-size: 14px;
  }
  .text-wrapper p {
    font-size: 12px;
  }
  .margin {
    font-size: 20px;
    margin: 60px 0 20px;
  }
}

/* --- 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;
}

.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: 768px) {
  .contact-page-main {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .cp-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .cp-phone-link {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

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

  .cp-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .cp-divider {
    margin: 0 auto 30px auto;
  }

  .cp-status {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 40px;
  }

  .cp-phone-link {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .cp-details {
    gap: 8px;
  }

  .cp-label {
    font-size: 12px;
  }

  .cp-address-box {
    padding-top: 20px;
    max-width: 100%;
  }

  .cp-addr {
    font-size: 16px;
  }

  .cp-email {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-page-main {
    padding-top: 100px;
    min-height: 70vh;
  }

  .cp-title {
    font-size: 22px;
  }

  .cp-divider {
    width: 50px;
  }

  .cp-status {
    font-size: 12px;
  }

  .cp-phone-link {
    font-size: 20px;
  }

  .cp-addr {
    font-size: 14px;
  }

  .cp-email {
    font-size: 12px;
  }
}
