/* DESIGN SYSTEM: Neo-Swiss / Vibrant Spark */
:root {
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --bg-dark: #0f0f0f;

  --text-main: #111111;
  --text-muted: #555555;
  --text-light: #f0f0f0;

  --accent-start: #ff6b00;
  --accent-end: #ff0055;
  --border: #e0e0e0;

  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --container: 1240px;
  --radius: 16px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7; /* Increased for readability */
  overflow-x: hidden;
}

/* UTILS */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}
h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
h3 {
  font-size: 1.6rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
}
.center {
  text-align: center;
  margin-bottom: 70px;
}
.narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* GRADIENTS & BUTTONS */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  color: transparent;
}
.btn-spark {
  padding: 12px 24px;
  background: var(--text-main);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-head);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn-spark:hover {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 0, 85, 0.3);
}

.btn-spark-lg {
  display: inline-block;
  padding: 18px 45px;
  background: var(--text-main);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-head);
  transition: 0.3s;
}
.btn-spark-lg:hover {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  box-shadow: 0 15px 30px rgba(255, 0, 85, 0.25);
  transform: translateY(-3px);
}

/* HEADER */
.xt-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.h-grid {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-head);
}
.l-main {
  font-weight: 700;
  font-size: 1.2rem;
}
.l-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.xt-nav {
  display: flex;
  gap: 30px;
}
.xt-nav a {
  font-weight: 500;
  font-size: 0.95rem;
}
.xt-nav a:hover {
  color: var(--accent-end);
}

.h-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
  transition: 0.3s;
}
.contact-pill i {
  width: 16px;
  height: 16px;
  color: var(--accent-end);
}
.contact-pill:hover {
  border-color: var(--accent-end);
  color: var(--accent-end);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 25px;
  height: 2px;
  background: var(--text-main);
}

/* MOBILE MENU */
.mob-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-white);
  z-index: 200;
  transform: translateX(100%);
  transition: 0.4s ease;
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}
.mob-menu.active {
  transform: translateX(0);
}
.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: var(--text-muted);
}
#closeMob {
  background: none;
  border: none;
  cursor: pointer;
}
.mm-list a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
}
.mm-highlight {
  color: var(--accent-end) !important;
  text-decoration: underline;
}

/* HERO */
.hero-xt {
  padding-top: 180px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  min-height: 90vh;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  letter-spacing: 1px;
}
.lead {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 600px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 40px;
}
.trust-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.stars {
  color: #ffb800;
  letter-spacing: 2px;
}

.hero-vis {
  position: relative;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}
.gp-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  font-family: monospace;
  color: var(--text-muted);
}
.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  margin-right: 5px;
}
.chart-mock {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  height: 180px;
  margin-bottom: 30px;
}
.bar {
  width: 45px;
  background: #eee;
  border-radius: 8px;
}
.b1 {
  height: 40%;
}
.b2 {
  height: 60%;
}
.b3 {
  height: 45%;
}
.b4 {
  height: 85%;
  background: linear-gradient(to top, var(--accent-start), var(--accent-end));
}
.gp-stat strong {
  display: block;
  font-size: 3rem;
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 5px;
}
.gp-stat small {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gp-note {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.glow-orb {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  filter: blur(100px);
  opacity: 0.25;
  border-radius: 50%;
  z-index: 1;
}

/* TICKER */
.ticker-wrap {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-label {
  white-space: nowrap;
  padding-left: 24px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-right: 40px;
}
.ticker {
  overflow: hidden;
  flex-grow: 1;
}
.track {
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
  color: #e0e0e0;
  animation: scroll 30s linear infinite;
}
.track span {
  color: var(--text-main);
  margin: 0 30px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PLATFORM FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.feat-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: var(--radius);
  transition: 0.4s;
  border: 1px solid transparent;
  height: 100%;
}
.feat-card:hover {
  border-color: var(--accent-end);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}
.fc-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  margin-bottom: 30px;
  transition: 0.3s;
}
.fc-icon i {
  width: 30px;
  height: 30px;
}
.feat-card:hover .fc-icon {
  background: var(--text-main);
  color: #fff;
}
.feat-card h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.feat-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* DARK SECTION (PATHS) */
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.light-text h2 {
  color: #fff;
}
.light-text p {
  color: #aaa;
}
.paths-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.path-item {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.path-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-start);
}
.pi-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
}
.pi-info {
  flex-grow: 1;
}
.pi-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.pi-info p {
  color: #bbb;
  margin-bottom: 25px;
  max-width: 650px;
  font-size: 1.1rem;
}
.pi-skills {
  font-size: 0.9rem;
  color: var(--accent-start);
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff;
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.path-item:hover .btn-arrow {
  background: var(--accent-start);
  color: #fff;
  transform: translateX(10px);
}

/* REVIEWS */
.sec-title-big {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 80px;
  opacity: 0.08;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -2px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.review-box {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}
.rb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.rb-stars {
  color: #ffb800;
  letter-spacing: 2px;
}
.rb-date {
  font-size: 0.8rem;
  color: #ccc;
}
.rb-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 30px;
  flex-grow: 1;
}
.rb-author {
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.rb-author strong {
  display: block;
  font-size: 1.1rem;
}
.rb-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.acc-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.3s;
}
.acc-item:hover {
  border-color: #ccc;
}
.acc-btn {
  width: 100%;
  text-align: left;
  padding: 25px 35px;
  background: none;
  border: none;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}
.acc-btn::after {
  content: "+";
  font-size: 1.8rem;
  transition: 0.3s;
  color: var(--text-muted);
}
.acc-btn.active::after {
  content: "-";
  color: var(--accent-end);
  transform: rotate(180deg);
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 35px;
}
.acc-content p {
  padding-bottom: 35px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 90%;
}

/* CONTACT FORM SECTION */
.section-contact-form {
  background: #fff;
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cw-text h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  margin-top: 15px;
}
.cw-text p {
  color: var(--text-muted);
  margin-bottom: 50px;
  font-size: 1.1rem;
}
.cw-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cw-item {
  display: flex;
  gap: 20px;
  align-items: center;
}
.icon-circle {
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-end);
}
.cw-data {
  display: flex;
  flex-direction: column;
}
.cw-data .lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 5px;
}
.cw-data span:last-child {
  font-weight: 700;
  font-size: 1.1rem;
}

.cw-form-box {
  background: var(--bg-light);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}
.clean-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 25px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-end);
  box-shadow: 0 0 0 4px rgba(255, 0, 85, 0.1);
}
.btn-submit {
  width: 100%;
  padding: 20px;
  background: var(--text-main);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 10px;
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  transform: translateY(-3px);
}
.form-check {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  align-items: start;
  color: var(--text-muted);
}
.form-check input {
  margin-top: 5px;
  width: 16px;
  height: 16px;
}
.form-check a {
  text-decoration: underline;
  color: var(--text-main);
  font-weight: 600;
}

/* FOOTER */
.xt-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 100px 0 30px;
  margin-top: 0; /* Connected to form */
}
.f-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 50px;
  margin-bottom: 80px;
}
.f-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.f-col h5 {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 700;
}
.f-col ul li {
  margin-bottom: 15px;
}
.f-col a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: 0.2s;
}
.f-col a:hover {
  color: var(--accent-end);
  padding-left: 5px;
}
.f-contacts-list p {
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.f-contacts-list i {
  width: 18px;
  color: var(--accent-start);
}
.brand-col p {
  font-size: 0.95rem;
  margin-bottom: 30px;
  max-width: 300px;
}

.f-btm {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: #999;
}

/* COOKIE */
.cookie-box {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 320px;
  background: var(--text-main);
  color: #fff;
  padding: 25px;
  border-radius: 16px;
  z-index: 500;
  display: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.cookie-box p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
#acceptCookie {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: var(--text-main);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
#acceptCookie:hover {
  background: #f0f0f0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .xt-nav,
  .h-controls .contact-pill,
  .h-controls .btn-spark {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-split,
  .contact-wrapper,
  .f-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-vis {
    display: none;
  }
  .ticker-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .ticker-label {
    margin-bottom: 15px;
    padding-left: 24px;
  }
  .path-item {
    flex-direction: column;
    text-align: center;
  }
  .pi-skills {
    justify-content: center;
  }
  .btn-arrow {
    margin: 0 auto;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 80px 0;
  }
  h1 {
    font-size: 3rem;
  }
  .sec-title-big {
    font-size: 3rem;
    margin-bottom: 60px;
  }
}

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

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