:root {
  --color-primary: #ff6b00;
  --color-primary-hover: #e65a00;
  --color-navy: #003366;
  --color-navy-dark: #0a1128;
  --color-cyan: #00e5ff;
  --color-bg: #f8f9fa;
  --color-white: #ffffff;
  --color-text: #2c3e50;
  --color-text-light: #7f8c8d;
  --color-error: #e74c3c;

  --font-head: "Montserrat", sans-serif;
  --font-body: "Lora", serif;

  --transition: 0.3s ease-in-out;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --drawer-w: 420px;
}

* {
  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-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.padding-huge {
  padding: 120px 0;
}
.text-center {
  text-align: center;
}
.text-white {
  color: var(--color-white) !important;
}
.bg-navy {
  background-color: var(--color-navy-dark);
}
.bg-gray {
  background-color: #ecf0f1;
}
.text-light p {
  color: #bdc3c7;
}
.w-100 {
  width: 100%;
}
.align-center {
  text-align: center;
  justify-content: center;
}
.max-w-900 {
  max-width: 900px;
  margin: 0 auto;
}
.mt-20 {
  margin-top: 20px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}

/* Typography */
.mega-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--color-navy-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--color-navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid var(--color-navy);
}

.btn-outline:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

/* Header */
.masthead {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease;
}

.masthead.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-bound {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}

.masthead.scrolled .header-bound {
  padding: 12px 24px;
}

.logotype {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-navy);
}

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

.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: rgba(0, 51, 102, 0.05);
  border-radius: 6px;
  transition: var(--transition);
}

.hamburger-btn:hover {
  background: rgba(0, 51, 102, 0.1);
}

.hamburger-btn .hl {
  display: block;
  width: 32px;
  height: 3px;
  background-color: var(--color-navy);
  border-radius: 3px;
  transition: var(--transition);
}

/* Nav Drawer */
.screen-dimmer {
  position: fixed;
  inset: 0;
  background: rgba(10, 17, 40, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.screen-dimmer.active {
  opacity: 1;
  visibility: visible;
}

.sliding-drawer {
  position: fixed;
  top: 0;
  right: -var(--drawer-w);
  width: var(--drawer-w);
  height: 100vh;
  background: var(--color-white);
  z-index: 2000;
  padding: 50px 40px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.sliding-drawer.open {
  display: flex;
  right: 0;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.drawer-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.close-drawer {
  color: var(--color-navy);
  padding: 10px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-drawer:hover {
  background: var(--color-error);
  color: var(--color-white);
  transform: rotate(90deg);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.d-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-navy);
}

.d-link svg {
  color: var(--color-primary);
  transition: var(--transition);
}

.d-link:hover {
  color: var(--color-primary);
  padding-left: 10px;
}

.d-action {
  margin-top: 40px;
}

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

.hero-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

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

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--color-bg) 0%,
    rgba(248, 249, 250, 0.2) 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-text-area {
  padding-right: 40px;
}

.tech-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--color-navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 30px;
  border: 1px solid var(--color-cyan);
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 1.3rem;
  color: var(--color-navy-dark);
  margin-bottom: 40px;
}

.hero-controls {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Flex Layouts */
.flex-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.reverse-flex {
  flex-direction: row-reverse;
}

.flex-text,
.flex-visual {
  flex: 1;
}

.flex-text p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--color-text-light);
}

/* About / Visuals */
.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--color-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.styled-img {
  border-radius: calc(var(--radius-lg) - 10px);
}

.floating-stat {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding: 20px 30px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(0, 51, 102, 0.3);
  animation: float 5s ease-in-out infinite;
}

.floating-stat svg {
  width: 40px;
  height: 40px;
  color: var(--color-cyan);
}

.floating-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1;
}

.floating-stat span {
  font-size: 0.9rem;
  color: var(--color-cyan);
}

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

/* Routine / Bento */
.bento-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bento-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.bento-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-cyan);
  transform: translateY(-5px);
}

.wide-item {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.1) 0%,
    transparent 100%
  );
}

.bento-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bento-icon svg {
  color: var(--color-white);
  width: 32px;
  height: 32px;
}

.bento-item h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 15px;
}

/* Finance Stacked */
.stacked-images {
  position: relative;
  height: 500px;
}

.img-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 10px solid var(--color-bg);
}

/* Geo */
.geo-icon-wrap {
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.geo-icon-wrap svg {
  width: 48px;
  height: 48px;
  color: var(--color-navy);
}

.large-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-navy);
}

/* Timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.timeline-card {
  background: var(--color-white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  border-top: 5px solid var(--color-primary);
}

.t-step {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 51, 102, 0.05);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
}

.timeline-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.timeline-card p {
  color: var(--color-text-light);
  position: relative;
  z-index: 1;
}

/* Info */
.action-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.action-circle h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--color-white);
}

.pulse-ring {
  width: 80px;
  height: 80px;
  background: var(--color-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-dark);
  animation: pulse 2s infinite;
}

.pulse-ring svg {
  width: 36px;
  height: 36px;
  margin-left: 5px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 229, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
  }
}

/* FAQ */
.accordion-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: left;
}

.accordion-trigger svg {
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-panel p {
  padding: 0 30px 24px;
  color: var(--color-text-light);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.c-info-side {
  padding: 60px 50px;
  background: var(--color-navy);
  color: var(--color-white);
}

.c-info-side .section-title {
  color: var(--color-white);
}

.c-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.c-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-item {
  display: flex;
  gap: 20px;
}

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

.c-text h5 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.c-text span {
  color: rgba(255, 255, 255, 0.6);
}

.c-form-side {
  padding: 60px 50px;
}

.form-row {
  margin-bottom: 24px;
  position: relative;
}

.form-row label:not(.chk-label) {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.modern-form input[type="text"],
.modern-form input[type="tel"],
.modern-form input[type="email"],
.modern-form input[type="number"] {
  width: 100%;
  padding: 16px 20px;
  background: var(--color-bg);
  border: 1px solid #dcdde1;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition);
}

.modern-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.math-hl {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.checkbox-row {
  margin-top: 10px;
}

.chk-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.chk-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.chk-box {
  position: relative;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--color-bg);
  border: 1px solid #dcdde1;
  border-radius: 4px;
  flex-shrink: 0;
  transition: var(--transition);
}

.chk-label input:checked ~ .chk-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.chk-box:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.chk-label input:checked ~ .chk-box:after {
  display: block;
}

.chk-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.chk-text a {
  color: var(--color-navy);
  text-decoration: underline;
  font-weight: bold;
}

.err-msg {
  display: none;
  color: var(--color-error);
  font-size: 0.85rem;
  margin-top: 6px;
  font-family: var(--font-head);
  font-weight: 600;
}

.form-row.error input {
  border-color: var(--color-error);
}

.form-row.error .err-msg {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--color-navy-dark);
  padding: 80px 0 20px;
  color: rgba(255, 255, 255, 0.7);
}

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

.f-brand p {
  margin-top: 20px;
  max-width: 350px;
}

.f-brand .logotype {
  color: var(--color-white);
}

.f-nav h4,
.f-legal h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 24px;
}

.f-nav ul,
.f-legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-nav a:hover,
.f-legal a:hover {
  color: var(--color-cyan);
}

.accent-link a {
  color: var(--color-primary);
  font-weight: bold;
  text-decoration: underline;
}

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

/* Modal & Toast */
.cookie-overlay {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 9999;
  width: 90%;
  max-width: 600px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-overlay.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #e0e0e0;
}

.cookie-graphic svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
}

.cookie-details h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.cookie-details p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.notify-toast {
  position: fixed;
  top: 100px;
  right: 30px;
  background: #2ecc71;
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.4s ease;
}

.notify-toast.show {
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .sliding-drawer {
    width: 100vw;
    right: -100vw;
    align-items: center;
    padding-top: 80px;
  }

  .drawer-head {
    position: absolute;
    top: 20px;
    left: 24px;
    right: 24px;
    margin-bottom: 0;
  }

  .drawer-links {
    text-align: center;
    gap: 30px;
  }

  .d-link {
    justify-content: center;
    font-size: 1.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-backdrop {
    width: 100%;
    clip-path: none;
  }

  .hero-text-area {
    padding-right: 0;
    text-align: center;
  }

  .hero-controls {
    justify-content: center;
  }

  .flex-layout {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .reverse-flex {
    flex-direction: column;
  }

  .bento-layout {
    grid-template-columns: 1fr;
  }

  .wide-item {
    grid-column: span 1;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .c-info-side,
  .c-form-side {
    padding: 40px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mega-title {
    font-size: 2.5rem;
  }

  .padding-huge {
    padding: 80px 0;
  }

  .stacked-images {
    height: auto;
  }

  .img-back,
  .img-front {
    position: relative;
    width: 100%;
    box-shadow: none;
    border: none;
  }

  .img-front {
    margin-top: -50px;
  }

  .action-circle {
    width: 250px;
    height: 250px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .floating-stat {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 20px auto 0;
  }

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

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