:root {
  --bg-dark: #080808;
  --bg-darker: #040404;
  --bg-light: #121212;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --accent-primary: #f16432;
  --accent-hover: #d14f1f;
  --accent-secondary: #e0e0e0;
  --accent-warning: #ffc107;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-base:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

body.no-scroll {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

ul {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -1px;
}

h3 {
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.text-white {
  color: #fff;
}
.text-white p,
.text-white li {
  color: var(--text-secondary);
}
.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-base);
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 5px 15px rgba(241, 100, 50, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241, 100, 50, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-warning {
  background-color: var(--accent-warning);
  color: #000;
}

.btn-warning:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn.large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.full-width {
  width: 100%;
}

.underlined-link {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.underlined-link:hover {
  color: #fff;
}

/* Base Sections */
.section {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.dark-s {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.center-h {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.acc-line {
  width: 70px;
  height: 5px;
  background-color: var(--accent-primary);
  margin-bottom: 32px;
  border-radius: 3px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.header.scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.logo span {
  color: #fff;
}

.nav-desktop {
  display: none;
  gap: 32px;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-desktop a:hover {
  color: #fff;
}

/* Burger Wrapper fix */
.burger-wrapper {
  position: relative;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 992px) {
  .burger-wrapper {
    display: none;
  }
}

.burger-icon,
.cross-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.burger-icon {
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

/* State changes */
.cross-icon {
  opacity: 0;
  visibility: hidden;
}
.cross-icon i {
  width: 30px;
  height: 30px;
}

body.no-scroll .burger-icon {
  opacity: 0;
  visibility: hidden;
}
body.no-scroll .cross-icon {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-darker);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-link {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-muted);
}

.mobile-link:hover {
  color: #fff;
}

.highlight-btn {
  color: var(--accent-primary);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-ov {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(241, 100, 50, 0.08) 0%,
    transparent 70%
  );
  z-index: -1;
}

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

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  background-color: rgba(241, 100, 50, 0.1);
  color: var(--accent-primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-content p {
  margin-bottom: 24px;
  font-size: 1.15rem;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 991px) {
  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
}

.hero-img-box {
  position: relative;
}

.hero-img-box img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
}

.floating-stat {
  position: absolute;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.floating-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.floating-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.top-st {
  top: 40px;
  left: -40px;
  animation: floatY 6s ease-in-out infinite;
}

.bottom-st {
  bottom: 40px;
  right: -40px;
  animation: floatY 8s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
  .floating-stat {
    display: none;
  }
}

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

/* Method */
.method-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

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

.section-text p {
  margin-bottom: 24px;
}

.method-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 576px) {
  .method-visual {
    grid-template-columns: 1fr;
  }
}

.method-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-base);
}

.method-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.method-card i {
  color: var(--accent-primary);
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}

.method-card h4 {
  margin-bottom: 8px;
}
.method-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Stack */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.stack-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 48px 36px;
  border-radius: 20px;
  transition: var(--transition-base);
}

.stack-item:hover {
  border-color: var(--accent-primary);
  background-color: var(--bg-dark);
  box-shadow: 0 15px 40px rgba(241, 100, 50, 0.15);
}

.stack-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(241, 100, 50, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 32px;
}

.stack-icon i {
  width: 32px;
  height: 32px;
}

/* Career */
.career-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 991px) {
  .career-container {
    grid-template-columns: 1fr;
  }
  .career-img {
    order: 2;
  }
  .section-text {
    order: 1;
  }
}

.career-img img {
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.highlight-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Test */
.test-content {
  background: linear-gradient(
    135deg,
    var(--bg-light) 0%,
    var(--bg-darker) 100%
  );
  border: 1px solid var(--border-color);
  padding: 64px 40px;
  border-radius: 30px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .test-content {
    padding: 48px 24px;
  }
}

.icon-ov {
  width: 80px;
  height: 80px;
  background-color: rgba(241, 100, 50, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin: 0 auto 32px;
}

.icon-ov i {
  width: 40px;
  height: 40px;
}

.subtitle {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 24px;
}

/* EU Advantage */
.eu-container grid-2 img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}

@media (max-width: 991px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .reverse img {
    order: 2;
  }
  .reverse .section-text {
    order: 1;
  }
}

/* Action & Form */
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.action-form-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 48px;
  border-radius: 24px;
}

@media (max-width: 576px) {
  .action-form-box {
    padding: 32px 24px;
  }
}

.custom-form h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.input-row {
  margin-bottom: 20px;
}

.input-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.input-icon-w {
  position: relative;
}

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

.input-icon-w input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-base);
  transition: var(--transition-fast);
}

.input-icon-w input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(241, 100, 50, 0.15);
}

.captcha-row label {
  color: var(--accent-warning);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.checkbox-row input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-row label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.mt-40 {
  margin-top: 40px;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item.active {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 576px) {
  .faq-header {
    padding: 20px 24px;
  }
}

.faq-header h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.faq-header i {
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

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

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-body p {
  padding: 0 32px 24px;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 24px;
}

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

@media (max-width: 991px) {
  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-layout {
    grid-template-columns: 1fr;
  }
}

.footer-bio {
  margin-top: 20px;
  max-width: 350px;
  font-size: 0.95rem;
}

.footer-nav h4,
.footer-contacts h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #fff;
}

.clean-list li {
  margin-bottom: 12px;
}
.clean-list a {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.clean-list a:hover {
  color: #fff;
  padding-left: 5px;
}

.highlight-text-btn {
  color: var(--accent-primary) !important;
  text-decoration: underline;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 550px;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
  }
  h1 {
    font-size: 2rem;
  }
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-icon {
  color: var(--accent-warning);
  flex-shrink: 0;
}
.cookie-icon i {
  width: 32px;
  height: 32px;
}

.cookie-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cookie-info p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

#accept-cookies {
  align-self: flex-end;
}

.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;
  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: 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;
  }
}
