/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #8B5CF6;
  --pink: #EC4899;
  --dark: #1E1E2E;
  --gray: #6B6B80;
  --light-gray: #9B9BAA;
  --border: #E2E0EE;
  --bg: #F8F7FF;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
  --placeholder: #B0AEBF;
  --surface: #EEEDF5;
  --gradient: linear-gradient(135deg, #6D28D9 0%, #D946A8 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Container ── */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(248, 247, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: var(--bg);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  display: flex;
}

.logo-dark {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--dark);
}

.logo-purple {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  background: linear-gradient(135deg, #D946A8 0%, #6D28D9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger span.short {
  width: 14px;
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  padding: 80px 20px 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 20px 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: var(--dark);
  border-bottom: 1.5px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--purple);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  width: 20px;
}

/* ── Badge (section label) ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 100px;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

.badge span:last-child {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: var(--purple);
}

/* ── Buttons ── */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--gradient);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--white);
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: transparent;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--purple);
}

.btn-full {
  width: 100%;
}

/* ── Hero Background Video ── */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleY(-1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(248, 247, 255, 0) 26.416%,
    #F8F7FF 66.943%
  );
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 20px 32px;
  gap: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero h1 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 43px;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--dark);
  background: linear-gradient(135deg, #D946A8 0%, #6D28D9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-clip: text;
}

.hero-sub {
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: var(--gray);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-visual {
  width: 100%;
  position: relative;
}

.hero-text-row:nth-child(n+4) {
  display: none;
}

.hero-image {
  width: 100%;
  height: 220px;
  background: #1A1A2E;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-text-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-17deg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
  width: 400%;
}

.hero-text-row {
  display: flex;
  gap: 24px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 20px;
  white-space: nowrap;
  width: max-content;
}

.hero-text-row.scroll-left {
  animation: scroll-left 20s linear infinite;
}

.hero-text-row.scroll-right {
  animation: scroll-right 20s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.text-purple {
  color: rgba(139, 92, 246, 0.18);
}

.text-pink {
  color: rgba(236, 72, 153, 0.14);
}

.hero-stat {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  z-index: 2;
}

.hero-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-stat-label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.hero-stat-value {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #D94FA0;
}

/* ── Platform Stripe ── */
.platform-stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 20px;
}

.platform-tag {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.platform-purple {
  background: rgba(139, 92, 246, 0.06);
  color: var(--purple);
}

.platform-pink {
  background: rgba(236, 72, 153, 0.06);
  color: var(--pink);
}

/* ── Section shared styles ── */
.section-why,
.section-services,
.section-portfolio,
.section-team,
.section-testimonials,
.section-faq,
.section-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px;
  gap: 24px;
}

.section-why {
  gap: 20px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-header h2,
.section-why h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  color: var(--dark);
}

.section-why h2 {
  font-size: 24px;
  line-height: 33px;
}

.section-why > p {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: var(--gray);
}

/* ── Services ── */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.service-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.service-card h3 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--dark);
}

.service-card p {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray);
}

/* ── Portfolio ── */
.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.portfolio-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  height: 622px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.3s;
  position: relative;
  z-index: 2;
}

.portfolio-item:hover .play-btn {
  opacity: 0;
}

.portfolio-item:hover video {
  opacity: 1;
}

/* ── Team ── */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.team-card {
  height: 300px;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2), 0 4px 24px rgba(80, 40, 130, 0.15);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(24px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-name {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--white);
}

.team-role {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stars {
  font-size: 14px;
  line-height: 18px;
  color: var(--purple);
  letter-spacing: 0.08em;
}

.testimonial-card > p {
  font-size: 14px;
  line-height: 22px;
  color: var(--gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  flex-shrink: 0;
  object-fit: contain;
  padding: 4px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--dark);
}

.author-role {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: var(--purple);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-item {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
  text-align: left;
}

.faq-question span:first-child {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--dark);
}

.faq-icon {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--purple);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 18px 16px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--gray);
}

/* ── Contact ── */
.contact-sub {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--gray);
  margin-top: -4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 16px;
  color: var(--gray);
}

.form-group input,
.form-group textarea {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--placeholder);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form .btn-primary {
  margin-top: 4px;
}

.contact-info-line {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 16px;
  color: var(--gray);
  text-align: center;
}

/* ── Footer ── */
.footer {
  border-top: 1.5px solid var(--border);
}

.footer-inner {
  padding: 40px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact span {
  font-size: 11px;
  line-height: 18px;
  color: var(--gray);
}

.footer-anpc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.footer-anpc img {
  display: block;
  width: 160px;
  height: auto;
  border-radius: 3px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 12px;
  text-transform: uppercase;
  color: var(--purple);
}

.footer-col a {
  font-size: 12px;
  line-height: 16px;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--purple);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1.5px solid var(--border);
}

.footer-bottom span:first-child {
  font-size: 10px;
  line-height: 14px;
  color: var(--gray);
}

.footer-bottom span:last-child {
  font-size: 10px;
  line-height: 14px;
  color: var(--light-gray);
}

/* ── Decorative Blobs (global) ── */
.blob {
  display: block;
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  top: -80px;
  right: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(236, 72, 153, 0.06) 50%, transparent 70%);
}

.blob-2 {
  top: 50%;
  left: -160px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, rgba(139, 92, 246, 0.04) 50%, transparent 70%);
}

.blob-3 {
  bottom: -80px;
  right: -140px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.10) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 70%);
}

/* ── Legal Pages ── */
.legal-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 64px;
  gap: 32px;
}

.legal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.legal-header h1 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 37px;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--dark);
}

.legal-updated {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: var(--light-gray);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.legal-section h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--dark);
  margin-bottom: 10px;
}

.legal-section h3 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: var(--dark);
  margin-top: 14px;
  margin-bottom: 8px;
}

.legal-section p {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--gray);
  margin-bottom: 8px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.legal-section ul li {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
}

.legal-section a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.legal-section a:hover {
  opacity: 0.7;
}

/* ── Hidden by default (mobile) ── */
.nav-links {
  display: none;
}

.footer-lang {
  display: flex;
  align-items: center;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px;
  line-height: 14px;
}

.footer-lang a {
  color: var(--gray);
  transition: color 0.2s;
}

.footer-lang a:hover {
  color: var(--purple);
}

.lang-active {
  color: var(--purple);
  font-weight: 600;
}

.lang-sep {
  color: var(--gray);
}

.form-row {
  display: contents;
}

/* ══════════════════════════════════════
   TABLET — min-width: 768px
   ══════════════════════════════════════ */
@media (min-width: 768px) {

  /* ── Navbar ── */
  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav-links a {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: var(--gray);
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: var(--dark);
  }

  .nav-cta {
    padding: 10px 24px;
    background: var(--gradient);
    border-radius: 100px;
    color: var(--white) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
  }

  .navbar-inner {
    padding: 16px 40px;
  }

  .logo-dark,
  .logo-purple {
    font-size: 22px;
    line-height: 28px;
  }

  /* ── Hero ── */
  .hero {
    padding: 128px 40px 40px;
    gap: 24px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 57px;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 24px;
    max-width: 480px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
    gap: 16px;
  }

  .hero-image {
    height: 293px;
    border-radius: 18px;
  }

  .hero-text-grid {
    gap: 16px;
  }

  .hero-text-row {
    font-size: 18px;
    gap: 32px;
  }

  .hero-text-row:nth-child(n+4) {
    display: flex;
  }

  /* ── Platform Stripe ── */
  .platform-stripe {
    padding: 20px 40px;
  }

  /* ── Shared section padding ── */
  .section-why {
    padding: 80px 48px;
  }

  .section-services {
    padding: 80px 48px 64px;
    gap: 40px;
  }

  .section-portfolio {
    padding: 80px 40px 0;
    gap: 40px;
  }

  .section-team {
    padding: 80px 48px 64px;
    gap: 40px;
  }

  .section-testimonials {
    padding: 80px 40px;
    gap: 40px;
  }

  .section-faq {
    padding: 80px 48px;
    gap: 40px;
  }

  .section-contact {
    padding: 80px 48px;
    gap: 40px;
  }

  /* ── Section headers ── */
  .section-header h2,
  .section-why h2 {
    font-size: 36px;
    line-height: 47px;
  }

  .section-why h2 {
    font-size: 32px;
    line-height: 41px;
  }

  /* ── Services — 3 + 2 grid ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .services-grid .service-card:nth-child(1) { grid-column: 1 / 3; }
  .services-grid .service-card:nth-child(2) { grid-column: 3 / 5; }
  .services-grid .service-card:nth-child(3) { grid-column: 5 / 7; }
  .services-grid .service-card:nth-child(4) { grid-column: 2 / 4; }
  .services-grid .service-card:nth-child(5) { grid-column: 4 / 6; }

  /* ── Portfolio — 2 columns ── */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .portfolio-item {
    height: 560px;
  }

  /* ── Team — 3 columns ── */
  .team-grid {
    flex-direction: row;
    gap: 20px;
  }

  .team-card {
    flex: 1;
    height: 380px;
  }

  /* ── Testimonials — 2 columns ── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* ── FAQ ── */
  .faq-question span:first-child {
    font-size: 15px;
    line-height: 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  /* ── Contact — form in card, 2-col rows ── */
  .contact-form {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    gap: 16px;
  }

  .form-row {
    display: flex;
    gap: 16px;
  }

  .form-row .form-group {
    flex: 1;
  }

  .form-group input,
  .form-group textarea {
    background: var(--bg);
  }

  .form-group label {
    font-size: 12px;
    font-weight: 500;
  }

  /* ── Footer ── */
  .footer-inner {
    padding: 48px 48px 40px;
    gap: 32px;
  }

  .footer-lang {
    font-size: 12px;
    line-height: 16px;
  }

  /* ── Legal Pages ── */
  .legal-page {
    padding: 56px 48px 80px;
    gap: 40px;
  }

  .legal-header h1 {
    font-size: 36px;
    line-height: 47px;
  }

  .legal-content {
    max-width: 720px;
    gap: 32px;
  }

  .legal-section h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .legal-section p {
    font-size: 15px;
    line-height: 26px;
  }

  .legal-section ul li {
    font-size: 15px;
    line-height: 24px;
  }

  .blob {
    width: 500px;
    height: 500px;
  }

  .blob-1 {
    top: -100px;
    right: -126px;
  }

  .blob-2 {
    top: 50%;
    left: -200px;
  }

  .blob-3 {
    bottom: -100px;
    right: -180px;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links {
    display: flex;
    gap: 40px;
  }

  .footer-col {
    gap: 10px;
  }

  .footer-col-title {
    font-size: 11px;
    line-height: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-contact span {
    font-size: 12px;
    line-height: 20px;
  }

  .footer-bottom {
    padding-top: 24px;
  }

  .footer-bottom span:first-child,
  .footer-bottom span:last-child {
    font-size: 11px;
  }
}

/* ══════════════════════════════════════
   DESKTOP — min-width: 1200px
   ══════════════════════════════════════ */
@media (min-width: 1200px) {

  /* ── Navbar ── */
  .navbar-inner {
    padding: 28px 64px;
  }

  .nav-cta {
    padding: 12px 28px;
    font-size: 15px !important;
  }

  /* ── Hero ── */
  .hero {
    padding: 128px 64px 64px;
    gap: 32px;
    position: relative;
    overflow: visible;
  }

  .hero h1 {
    font-size: 68px;
    line-height: 79px;
    letter-spacing: -0.03em;
    max-width: 800px;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 28px;
    max-width: 480px;
  }

  .hero-buttons {
    margin-top: 16px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    padding: 18px 44px;
  }

  .hero-visual {
    max-width: 1000px;
  }

  .hero-image {
    height: 429px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  }

  .hero-text-grid {
    gap: 20px;
    padding: 28px 0;
  }

  .hero-text-row {
    font-size: 22px;
    gap: 40px;
    line-height: 28px;
  }

  .hero-stat {
    right: 24px;
    bottom: 24px;
    gap: 14px;
    padding: 14px 24px 14px 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.25);
  }

  .hero-stat-icon {
    width: 44px;
    height: 44px;
  }

  .hero-stat-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-stat-label {
    font-size: 11px;
    line-height: 14px;
  }

  .hero-stat-value {
    font-size: 22px;
    line-height: 26px;
  }

  /* ── Platform Stripe — hidden on desktop (absorbed into hero bg) ── */
  .platform-stripe {
    padding: 20px 64px;
  }

  /* ── Shared section padding ── */
  .section-why {
    padding: 100px 64px;
  }

  .section-why h2 {
    font-size: 36px;
    line-height: 45px;
    max-width: 680px;
  }

  .section-why > p {
    font-size: 16px;
    line-height: 28px;
  }

  .section-services {
    padding: 80px 64px 64px;
    gap: 48px;
  }

  .section-portfolio {
    padding: 80px 60px 0;
    gap: 40px;
  }

  .section-team {
    padding: 80px 64px 64px;
    gap: 48px;
  }

  .section-testimonials {
    padding: 80px 60px;
    gap: 40px;
  }

  .section-faq {
    padding: 80px 64px;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }

  .section-contact {
    padding: 80px 64px;
    gap: 40px;
  }

  /* ── Section headers ── */
  .section-header h2 {
    font-size: 40px;
    line-height: 51px;
    letter-spacing: -0.02em;
  }

  /* ── Services ── */
  .service-card h3 {
    font-size: 20px;
    line-height: 24px;
  }

  /* ── Portfolio — 3 columns ── */
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .portfolio-item {
    height: 754px;
  }

  /* ── Team ── */
  .team-grid {
    gap: 24px;
  }

  .team-card {
    height: 460px;
  }

  /* ── Testimonials ── */
  .testimonials-grid {
    gap: 24px;
  }

  /* ── FAQ ── */
  .faq-question span:first-child {
    font-size: 16px;
    line-height: 20px;
  }

  .faq-icon {
    font-size: 22px;
    line-height: 28px;
  }

  /* ── Contact — max-width container ── */
  .section-contact {
    align-items: center;
  }

  .section-contact .section-header h2 {
    font-size: 40px;
    line-height: 51px;
    letter-spacing: -0.02em;
  }

  .section-contact .contact-sub {
    font-size: 16px;
    line-height: 20px;
  }

  .contact-form {
    max-width: 640px;
    padding: 36px 32px;
  }

  .form-group input {
    height: 48px;
    padding: 0 16px;
  }

  .form-group textarea {
    min-height: 110px;
  }

  .contact-form .btn-primary {
    padding: 18px;
  }

  /* ── Legal Pages ── */
  .legal-page {
    padding: 64px 64px 100px;
    gap: 48px;
  }

  .legal-header h1 {
    font-size: 40px;
    line-height: 51px;
    letter-spacing: -0.03em;
  }

  .legal-content {
    max-width: 760px;
    gap: 36px;
  }

  .legal-section h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .legal-section p {
    font-size: 16px;
    line-height: 28px;
  }

  .legal-section ul li {
    font-size: 16px;
    line-height: 26px;
  }

  .blob {
    width: 600px;
    height: 600px;
  }

  .blob-1 {
    top: -126px;
    right: -126px;
  }

  .blob-2 {
    top: 50%;
    left: -250px;
  }

  .blob-3 {
    bottom: -100px;
    right: -200px;
  }

  /* ── Footer ── */
  .footer-inner {
    padding: 48px 64px 40px;
  }
}
