/* === CSS VARIABLES & RESET === */
:root {
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-amber-500: #f59e0b;
  --color-amber-600: #d97706;
  --color-blue-500: #3b82f6;
  --color-gray-300: #cbd5e1;
  --color-white: #ffffff;

  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  --container-max-width: 1180px;
  --transition-base: all 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-body);
  background-color: var(--color-slate-900);
  color: var(--color-gray-300);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* === UTILITY CLASSES === */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.max-w-800 {
  max-width: 800px;
  margin: 0 auto;
}

.content-block {
  padding: 100px 0;
  position: relative;
}
.bg-slate-900 {
  background-color: var(--color-slate-900);
}
.bg-slate-800 {
  background-color: var(--color-slate-800);
}

.text-white {
  color: var(--color-white) !important;
}
.text-amber {
  color: var(--color-amber-500) !important;
}
.text-blue {
  color: var(--color-blue-500) !important;
}
.text-gray-300 {
  color: var(--color-gray-300) !important;
}

.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.img-rounded {
  border-radius: 8px;
}
.box-shadow-amber {
  box-shadow: 15px 15px 0 rgba(245, 158, 11, 0.2);
}
.border-blue {
  border: 2px solid var(--color-blue-500);
  padding: 10px;
}
.box-shadow-blue {
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.hero-headline {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.body-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.hero-lead-text {
  font-size: 1.25rem;
  color: var(--color-gray-300);
  margin-bottom: 2rem;
  max-width: 650px;
}
.section-subtext {
  font-size: 1.25rem;
  color: var(--color-gray-300);
  margin-bottom: 3rem;
}

.heading-separator {
  width: 80px;
  height: 4px;
  background-color: var(--color-amber-500);
  margin-bottom: 2rem;
}
.center-separator {
  margin: 0 auto 2rem auto;
}

/* === BUTTONS === */
.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background-color: var(--color-amber-500);
  color: var(--color-slate-900);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
  box-sizing: border-box;
}
.btn-primary-solid:hover {
  background-color: var(--color-amber-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-outline-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 2px solid var(--color-amber-500);
  color: var(--color-amber-500);
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 4px;
  background: transparent;
}
.btn-outline-amber:hover {
  background-color: var(--color-amber-500);
  color: var(--color-slate-900);
}

.btn-text-plain {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.btn-text-plain:hover {
  color: var(--color-amber-500);
  gap: 15px;
}

.btn-full {
  width: 100%;
}
.btn-small {
  padding: 10px 24px;
  font-size: 1rem;
}

/* === HEADER === */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand-text-display {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desktop-navigation {
  display: flex;
  gap: 40px;
}
.nav-item {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-gray-300);
  position: relative;
  padding-bottom: 5px;
}
.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-amber-500);
  transition: var(--transition-base);
}
.nav-item:hover,
.active-nav-item {
  color: var(--color-white);
}
.nav-item:hover::after,
.active-nav-item::after {
  width: 100%;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-text-link {
  font-weight: 600;
  color: var(--color-white);
}
.contact-text-link:hover {
  color: var(--color-amber-500);
}
.burger-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}

/* === MOBILE NAV === */
.mobile-nav-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-slate-900);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-curtain.open {
  transform: translateY(0);
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.mobile-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
}
.close-icon-btn {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-bottom: auto;
}
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
}
.mobile-nav-links a:hover {
  color: var(--color-amber-500);
}
.mobile-nav-action {
  margin-top: auto;
  padding-top: 20px;
}

/* === HERO === */
.hero-section {
  position: relative;
  padding-top: 160px;
  padding-bottom: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1578509378170-eb97db66a1a8?auto=format&fit=crop&q=80&w=1920")
    center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
  filter: grayscale(100%);
}
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-slate-900) 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  z-index: 2;
}
.hero-content-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--color-amber-500);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-action-group {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.glass-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.glass-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 20px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.indicator.red {
  background: #ef4444;
}
.indicator.yellow {
  background: #f59e0b;
}
.indicator.green {
  background: #10b981;
}
.glass-body {
  padding: 40px 30px;
}
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
}
.metric-label {
  color: var(--color-white);
  font-size: 1.1rem;
}
.metric-value {
  font-size: 1.5rem;
}
.metric-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  background: var(--color-amber-500);
  border-radius: 4px;
}
.blue-fill {
  background: var(--color-blue-500);
}

/* === LAYOUTS === */
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reverse-layout {
  direction: rtl;
}
.reverse-layout > * {
  direction: ltr;
}
.header-centered {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* === GRIDS & CARDS === */
.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card-dark {
  background-color: var(--color-slate-900);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 8px;
  transition: var(--transition-base);
}
.feature-card-dark:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.5);
  background-color: #152033;
}
.highlight-card {
  border-color: var(--color-amber-500);
  background-color: #172136;
}
.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--color-amber-500);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.feature-desc {
  color: var(--color-gray-300);
  margin-bottom: 0;
}

/* === BANNERS === */
.finance-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-slate-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  border-radius: 8px;
  border-left: 6px solid var(--color-blue-500);
}
.finance-text {
  max-width: 600px;
}
.finance-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.big-number {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.number-caption {
  font-size: 1.1rem;
  color: var(--color-gray-300);
  text-transform: uppercase;
  font-weight: 500;
}

.audit-wrapper {
  background: linear-gradient(135deg, var(--color-slate-800), #162032);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.audit-content {
  max-width: 650px;
}
.audit-action {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
}
.huge-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

/* === STEPS === */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-circle {
  width: 60px;
  height: 60px;
  background-color: var(--color-amber-500);
  color: var(--color-slate-900);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
}
.step-line {
  flex-grow: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 20px;
  transform: translateY(-15px);
}

/* === FAQ === */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion-item {
  background-color: var(--color-slate-900);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.accordion-btn {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.accordion-btn i {
  color: var(--color-amber-500);
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-btn i {
  transform: rotate(45deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 30px;
}
.accordion-content p {
  padding-bottom: 24px;
  margin: 0;
}
.accordion-item.active .accordion-content {
  max-height: 300px;
}

/* === CONTACT FORM (STRICT VERTICAL) === */
.form-container-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-slate-900);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-top: 4px solid var(--color-amber-500);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.form-content-area {
  padding: 50px;
}
.vertical-strict-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.input-field-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.input-field-group label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-gray-300);
}
.input-field-group input[type="text"],
.input-field-group input[type="email"],
.input-field-group input[type="tel"],
.input-field-group input[type="number"] {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background-color: var(--color-slate-800);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-base);
  display: block;
  box-sizing: border-box;
}
.input-field-group input:focus {
  outline: none;
  border-color: var(--color-amber-500);
  background-color: var(--color-slate-900);
}

/* Captcha and Checkbox layout explicitly vertical or safely aligned for strictness */
.captcha-container {
  flex-direction: column;
}
.captcha-container label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 10px;
}
.checkbox-container {
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  margin-top: 10px;
}
.checkbox-container input {
  margin-top: 5px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--color-amber-500);
  cursor: pointer;
}
.consent-text-label {
  font-size: 0.85rem !important;
  color: var(--color-gray-300);
  line-height: 1.5;
  cursor: pointer;
}
.consent-text-label a {
  text-decoration: underline;
  text-decoration-color: rgba(245, 158, 11, 0.4);
}
.consent-text-label a:hover {
  text-decoration-color: var(--color-amber-500);
}

/* === FOOTER === */
.site-footer {
  padding: 80px 0 20px;
  background-color: #0b1120;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid-4 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.footer-desc-text {
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.footer-contact-link {
  color: var(--color-amber-500);
  font-weight: 600;
  border-bottom: 1px solid var(--color-amber-500);
  padding-bottom: 2px;
}
.footer-col-title {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--color-white);
}
.f-link {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-gray-300);
}
.f-link:hover {
  color: var(--color-amber-500);
  transform: translateX(5px);
}
.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--color-gray-300);
}
.footer-contact-info i {
  color: var(--color-blue-500);
  width: 18px;
  height: 18px;
}
.footer-bottom-bar {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

/* === COOKIE MODAL === */
.cookie-modal-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  z-index: 5000;
  display: none;
}
.cookie-modal-content {
  background-color: var(--color-slate-800);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--color-blue-500);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.cookie-message-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-gray-300);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .desktop-navigation,
  .header-tools .btn-outline-amber,
  .header-tools .contact-text-link {
    display: none;
  }
  .burger-menu-btn {
    display: block;
  }

  .hero-content-grid,
  .layout-split,
  .finance-banner,
  .audit-wrapper,
  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-typography {
    text-align: center;
  }
  .hero-lead-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-action-group {
    justify-content: center;
  }

  .grid-3-cols {
    grid-template-columns: 1fr;
  }
  .finance-banner,
  .audit-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .finance-action {
    align-items: center;
  }

  .form-content-area {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .content-block {
    padding: 80px 0;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
  .hero-action-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-solid,
  .btn-text-plain {
    width: 100%;
    justify-content: center;
  }
  .process-steps {
    flex-direction: column;
    gap: 20px;
  }
  .step-line {
    width: 2px;
    height: 30px;
    margin: 0;
    transform: none;
  }
  .cookie-modal-content {
    flex-direction: column;
    text-align: center;
  }
}
.pages {
  padding: 120px 0;
}

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

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