:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --secondary: #0f172a;
  --accent: #f472b6;
  --bg-body: #ffffff;
  --bg-light: #f8fafc;
  --text-main: #334155;
  --text-head: #0f172a;
  --border: #e2e8f0;
  --container: 1200px;
  --font: "Plus Jakarta Sans", sans-serif;
  --shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-head);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: white;
}

.btn-white {
  background: white;
  color: var(--primary);
}
.btn-white:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: transparent;
}
.btn-outline-white:hover {
  background: white;
  color: var(--primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}
.full-width {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__inner {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__text {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-head);
}

.nav-desktop {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-link {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.nav-btn {
  background: var(--bg-light);
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-head);
}

.burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 25px;
  height: 2px;
  background: var(--text-head);
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
  transform: translateX(0);
}

.mm-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.mm-title {
  font-weight: 700;
  font-size: 1.2rem;
}
.mm-close {
  background: none;
  border: none;
  cursor: pointer;
}

.mm-body {
  flex: 1;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mm-body a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-head);
}
.mm-footer {
  padding: 20px;
}

/* Hero */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-head);
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #475569;
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-main);
}
.hero__note i {
  color: #10b981;
  width: 20px;
}

/* Section Generic */
.section {
  padding: 100px 0;
}
.bg-light {
  background: var(--bg-light);
}
.bg-blue {
  background: var(--primary);
}
.text-white {
  color: white;
}
.text-white p {
  color: rgba(255, 255, 255, 0.9);
}

.section-head {
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-head);
  font-weight: 700;
}

/* Grid Features */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-feature {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid transparent;
}
.card-feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #eef2ff;
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-head);
}

/* Split */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-img {
  position: relative;
}
.split-img img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.float-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-card span {
  font-weight: 700;
  color: var(--text-head);
}
.avatars {
  display: flex;
}
.av {
  width: 30px;
  height: 30px;
  background: #cbd5e1;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: -10px;
}
.av:nth-child(1) {
  background: #64748b;
}
.av:nth-child(2) {
  background: #94a3b8;
}

.split-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--text-head);
  font-weight: 700;
}
.split-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-head);
}
.check-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Bento Income */
.bento-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
}
.bento-main {
  grid-row: span 2;
  background: var(--secondary);
  color: white;
  padding: 50px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.bento-main h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.bento-main p {
  color: #94a3b8;
  margin-bottom: 30px;
}
.link-arrow {
  color: #38bdf8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bento-side {
  background: white;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-side i {
  color: var(--primary);
  margin-bottom: 15px;
  width: 30px;
  height: 30px;
}
.bento-side h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-head);
}

/* CTA Block */
.cta-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-block h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}
.cta-block p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-head);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding: 0 24px;
}
.faq-content p {
  padding-bottom: 20px;
  color: var(--text-main);
}
.faq-item.active .faq-btn {
  color: var(--primary);
}
.faq-item.active .faq-btn i {
  transform: rotate(45deg);
}

/* Form */
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.form-text {
  background: var(--secondary);
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.form-text p {
  color: #94a3b8;
  margin-bottom: 40px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ci-row {
  display: flex;
  gap: 15px;
  align-items: center;
}

.modern-form {
  padding: 60px 40px;
}
.inp-group {
  margin-bottom: 20px;
  position: relative;
}
.inp-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.inp-group input {
  width: 100%;
  padding: 14px;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 12px;
  transition: 0.3s;
  font-size: 1rem;
}
.inp-group input:focus {
  border-color: var(--primary);
  background: white;
  outline: none;
}
.error-text {
  color: #ef4444;
  font-size: 0.8rem;
  position: absolute;
  bottom: -20px;
  left: 0;
  display: none;
}
.inp-group.error input {
  border-color: #ef4444;
}
.inp-group.error .error-text {
  display: block;
}

.check-group {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.check-group input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.check-group label {
  font-size: 0.9rem;
  color: #64748b;
}
.check-group a {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: white;
  padding: 80px 0 20px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.ft-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-head);
  display: block;
  margin-bottom: 16px;
}
.ft-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-head);
}
.ft-col a,
.ft-col p {
  display: block;
  margin-bottom: 12px;
  color: #64748b;
  font-size: 0.95rem;
}
.ft-col a:hover {
  color: var(--primary);
}
.footer-btm {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Cookie */
.cookie-modal {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 340px;
  z-index: 9999;
  display: none;
}
.cookie-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cookie-body p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero__content {
    text-align: center;
    margin: 0 auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__note {
    justify-content: center;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .split-block {
    grid-template-columns: 1fr;
  }
  .split-img {
    order: -1;
  }
  .form-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-main {
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-modal {
    left: 20px;
    right: 20px;
    width: auto;
  }
  .hero__actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}

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