:root {
  --color-bg: #ffffff;
  --color-bg-light: #f8fafc;
  --color-bg-dark: #1e293b;
  --color-bg-darker: #0f172a;
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-accent: #f97316;
  --color-accent-hover: #ea580c;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #f1f5f9;
  --color-border: #e2e8f0;

  --bento-indigo: #c7d2fe;
  --bento-orange: #ffedd5;
  --bento-teal: #ccfbf1;
  --bento-purple: #ede9fe;
  --bento-pink: #fce7f3;

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

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  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.6;
  overflow-x: hidden;
}
body.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 24px;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -1px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}
.hero-lead {
  font-size: 1.3rem;
  color: var(--color-text-light);
}

.text-center {
  text-align: center;
}
.text-white {
  color: var(--color-text-light);
}
.text-white h2,
.text-white h3,
.text-white p {
  color: var(--color-text-light);
}
.accent-text {
  color: var(--color-accent);
}
.max-w-700 {
  max-width: 700px;
}
.mt-8 {
  margin-top: 32px;
}
.full-w {
  width: 100%;
}

.divider {
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  margin-bottom: 32px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-light);
}
.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}
.btn-secondary {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-light);
}
.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-bg-light);
}
.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.align-center {
  align-items: center;
}

@media (max-width: 991px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .text-block {
    order: 2;
  }
  .visual-block {
    order: 1;
  }
}

.section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}
.section-title {
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-title p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
}
.bg-light {
  background-color: var(--color-bg-light);
}
.bg-dark {
  background-color: var(--color-bg-darker);
  color: var(--color-text-light);
}
.rounded-img {
  border-radius: var(--radius-lg);
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-fast);
}
.sticky-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1100;
}
.brand-text {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-text);
}
.menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1100;
}
.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  left: 0;
  transition: var(--transition-fast);
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}
.menu-toggle.active .hamburger {
  background-color: transparent;
}
.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 1050;
  transition: opacity 0.4s ease;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--color-border);
}
.nav-overlay.active .nav-panel {
  transform: translateX(0);
}
.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}
.nav-link:hover {
  color: var(--color-text);
  padding-left: 10px;
}
.special-link {
  color: var(--color-primary) !important;
}
.nav-footer {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

@media (max-width: 991px) {
  .brand-text {
    font-size: 1.4rem;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lifestyle-bg {
  background-image: url("https://images.unsplash.com/photo-1579373903781-fd5c0c30c4cd?auto=format&fit=crop&q=80&w=1920");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.95) 0%,
    rgba(30, 41, 59, 0.7) 100%
  );
  z-index: 1;
}
.hero-title {
  color: var(--color-text-light);
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content-box {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto;
  padding: 60px;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-title {
  color: var(--color-text-light);
}
.hero-section .badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-visuals {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  animation: floatVertical 6s ease-in-out infinite;
  pointer-events: auto;
}
.floating-icon i {
  width: 32px;
  height: 32px;
}
.fi-1 {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}
.fi-2 {
  top: 65%;
  left: 10%;
  animation-delay: 1s;
}
.fi-3 {
  top: 45%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes floatVertical {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@media (max-width: 991px) {
  .hero-content-box {
    padding: 40px;
  }
  .hero-container {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .floating-icon {
    display: none;
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}
.bento-item {
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 1px solid var(--color-border);
}
.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.3);
}
.bento-item i {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
.bento-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.accent-indigo {
  background-color: var(--bento-indigo);
  border-color: rgba(199, 210, 254, 0.5);
}
.accent-indigo i,
.accent-indigo h3 {
  color: var(--color-primary);
}
.accent-orange {
  background-color: var(--bento-orange);
  border-color: rgba(255, 237, 213, 0.5);
}
.accent-orange i,
.accent-orange h3 {
  color: var(--color-accent);
}
.accent-teal {
  background-color: var(--bento-teal);
  border-color: rgba(204, 251, 241, 0.5);
}
.accent-teal i,
.accent-teal h3 {
  color: #115e59;
}
.accent-purple {
  background-color: var(--bento-purple);
  border-color: rgba(237, 233, 254, 0.5);
}
.accent-purple i,
.accent-purple h3 {
  color: #6b21a8;
}
.accent-pink {
  background-color: var(--bento-pink);
  border-color: rgba(252, 231, 243, 0.5);
}
.accent-pink i,
.accent-pink h3 {
  color: #9d174d;
}

.integration-section .heading-block {
  margin-bottom: 80px;
}
.steps-flex {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 300px;
  background-color: var(--color-bg);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  position: relative;
  box-shadow: var(--shadow-md);
}
.step-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.step-num {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 70px;
  height: 70px;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-head);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}
.step-card h3 {
  color: var(--color-primary);
  margin-top: 15px;
}

.test-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 1) 0%,
    rgba(15, 23, 42, 1) 100%
  );
  padding: 80px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.test-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(249, 115, 22, 0.1);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 32px;
}
.test-icon i {
  width: 40px;
  height: 40px;
}
.test-box .btn-accent {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .test-box {
    padding: 48px 24px;
  }
}

.security-composition {
  position: relative;
  width: 100%;
  height: 300px;
}
.shield-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  color: var(--color-primary);
  opacity: 0.1;
  animation: pulse 3s infinite;
}
.data-stream {
  position: absolute;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-accent),
    transparent
  );
  border-radius: 2px;
}
.ds-1 {
  width: 150px;
  top: 30%;
  left: 10%;
  animation: stream 4s linear infinite;
}
.ds-2 {
  width: 200px;
  top: 60%;
  right: 5%;
  animation: stream 5s linear infinite;
}
.ds-3 {
  width: 100px;
  bottom: 20%;
  left: 25%;
  animation: stream 3s linear infinite;
}
@keyframes stream {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(50px);
  }
}
@keyframes pulse {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.1;
  }
}

.benefit-card {
  background-color: var(--color-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.icon-wrap i {
  width: 32px;
  height: 32px;
}
.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.indigo i {
  color: var(--color-primary);
}
.orange i {
  color: var(--color-accent);
}
.teal i {
  color: #0d9488;
}

.future-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.future-bg {
  background-image: url("https://images.unsplash.com/photo-1579373903781-fd5c0c30c4cd?auto=format&fit=crop&q=80&w=1920");
  background-size: cover;
  background-position: center;
}
.future-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item.active {
  border-color: var(--color-primary);
}
.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}
@media (max-width: 576px) {
  .faq-question {
    padding: 20px 24px;
  }
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 32px 32px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.faq-question i {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.contact-snippets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.snippet {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
}
.snippet i {
  color: var(--color-primary);
  flex-shrink: 0;
}

.form-block {
  background-color: var(--color-bg);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
@media (max-width: 576px) {
  .form-block {
    padding: 32px 24px;
  }
}
.modern-form .form-title {
  text-align: center;
  margin-bottom: 32px;
}
.input-group {
  margin-bottom: 24px;
}
.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}
.input-rel {
  position: relative;
}
.input-rel i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  width: 20px;
  height: 20px;
}
.input-rel input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition-fast);
}
.input-rel input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.captcha-group label {
  color: var(--color-primary) !important;
  font-weight: 700;
  font-family: monospace;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.checkbox-group input {
  margin-top: 6px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-group label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 500;
}
.form-link:hover {
  color: var(--color-primary-hover);
}

.main-footer {
  background-color: var(--color-bg-darker);
  padding: 80px 0 24px;
  border-top: 1px solid #333;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer-logo {
  margin-bottom: 24px;
}
.footer-col h4 {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--color-text-light);
  padding-left: 4px;
}
.highlight-contact {
  color: var(--color-primary) !important;
  font-weight: 600;
  text-decoration: underline;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.footer-contact-row i {
  color: var(--color-text-light);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer-copyright {
  border-top: 1px solid #333;
  padding-top: 24px;
  color: #555;
  font-size: 0.9rem;
}

.modal-frame {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 450px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .modal-frame {
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: calc(100% - 30px);
  }
  h2 {
    font-size: 1.5rem !important;
  }
}
.modal-frame.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cookie-icon-wrap i {
  color: var(--color-accent);
  width: 32px;
  height: 32px;
}
.cookie-text-wrap h4 {
  color: var(--color-text);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.cookie-text-wrap p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}
.cookie-link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-actions {
  display: flex;
  justify-content: flex-end;
}
#accept-cookies {
  width: 100%;
}

.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(--ink);
  margin-bottom: 40px;
  margin-top: 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(--ink);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px !important;
    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;
  }
}
