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

  :root {
    --bg: #F7F4EF;
    --dark: #1A1A2E;
    --cream: #F0EBE1;
    --accent-orange: #FF5C2B;
    --accent-violet: #7B4FD4;
    --accent-green: #1DB87A;
    --accent-yellow: #FFD23F;
    --text: #1A1A2E;
    --muted: #7A7A8C;
    --card-bg: #FFFFFF;
    --radius: 20px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(247,244,239,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,26,46,0.06);
  }
  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
  }
  .logo span { color: var(--accent-orange); }
  nav ul { list-style: none; display: flex; gap: 2.5rem; }
  nav ul a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
    transition: color .2s;
  }
  nav ul a:hover { color: var(--dark); }
  .nav-cta {
    background: var(--dark);
    color: #fff !important;
    padding: .55rem 1.4rem;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: transform .2s, background .2s !important;
  }
  .nav-cta:hover { background: var(--accent-orange) !important; transform: translateY(-1px); color: #fff !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--accent-yellow);
    color: var(--dark);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
  }
  .hero-tag::before { content: '✦'; font-size: .8rem; }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }
  h1 em, h2 em {
    font-style: normal;
    color: var(--accent-orange);
    position: relative;
    white-space: nowrap;
  }
  h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 6px;
    background: var(--accent-yellow);
    border-radius: 4px;
    z-index: -1;
    opacity: .5;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
  }

  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: .6rem;
    background: var(--accent-orange);
    color: #fff;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(255,92,43,.28);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,92,43,.38); }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--dark);
    font-weight: 500;
    font-size: .95rem;
    text-decoration: none;
    border-bottom: 2px solid var(--dark);
    padding-bottom: 2px;
    transition: color .2s;
  }
  .btn-secondary:hover { color: var(--accent-violet); border-color: var(--accent-violet); }

  /* ── PHONE MOCKUP ── */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .floating-blob {
    position: absolute;
    width: 420px; height: 420px;
    background: radial-gradient(circle at 40% 40%, #c8b4ff 0%, #ffd6c8 60%, transparent 100%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    z-index: 0;
  }

  .phone {
    position: relative; z-index: 2;
    width: 240px;
    background: var(--dark);
    border-radius: 44px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(26,26,46,.35), 0 0 0 1px rgba(255,255,255,.12);
    animation: float 5s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }
  .phone-inner {
    background: #F7F4EF;
    border-radius: 34px;
    overflow: hidden;
    height: 480px;
    position: relative;
  }
  .phone-notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 22px;
    background: var(--dark);
    border-radius: 12px;
    z-index: 5;
  }
  .phone-screen {
    padding: 48px 14px 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .phone-header {
    font-family: 'Syne', sans-serif;
    font-size: .7rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    padding-bottom: 6px;
  }
  .phone-search {
    background: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: .65rem;
    color: #aaa;
    border: 1.5px solid #eee;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .phone-search::before { content: '🔍'; font-size: .7rem; }

  .phone-cards { display: flex; flex-direction: column; gap: 8px; }

  .phone-card {
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .phone-card:nth-child(1) { background: #FFD23F22; }
  .phone-card:nth-child(2) { background: #7B4FD422; }
  .phone-card:nth-child(3) { background: #1DB87A22; }

  .phone-card-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .phone-card:nth-child(1) .phone-card-icon { background: var(--accent-yellow); }
  .phone-card:nth-child(2) .phone-card-icon { background: var(--accent-violet); }
  .phone-card:nth-child(3) .phone-card-icon { background: var(--accent-green); }

  .phone-card-text { flex: 1; }
  .phone-card-title { font-size: .62rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
  .phone-card-sub { font-size: .56rem; color: var(--muted); }

  .phone-bottom-nav {
    margin-top: auto;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
  }
  .phone-nav-item { font-size: .9rem; opacity: .4; }
  .phone-nav-item.active { opacity: 1; }

  /* Floating badges */
  .badge-float {
    position: absolute;
    z-index: 3;
    background: #fff;
    border-radius: 14px;
    padding: .5rem .85rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(26,26,46,.14);
    white-space: nowrap;
  }
  .badge-float.b1 { top: 10%; right: -30px; animation: float 4s 1s ease-in-out infinite; }
  .badge-float.b2 { bottom: 20%; left: -40px; animation: float 4.5s 0.5s ease-in-out infinite; }
  .badge-float span { margin-right: 4px; }

  /* ── FEATURES ── */
  .section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 3rem;
  }

  .section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent-orange);
    margin-bottom: .8rem;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .feat-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1.5px solid rgba(26,26,46,.06);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
  }
  .feat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(26,26,46,.1); }
  .feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }
  .feat-card:nth-child(1)::before { background: var(--accent-orange); }
  .feat-card:nth-child(2)::before { background: var(--accent-violet); }
  .feat-card:nth-child(3)::before { background: var(--accent-green); }
  .feat-card:nth-child(4)::before { background: var(--accent-yellow); }
  .feat-card:nth-child(5)::before { background: var(--accent-orange); }
  .feat-card:nth-child(6)::before { background: var(--accent-violet); }

  .feat-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .feat-card:nth-child(1) .feat-icon { background: #FF5C2B18; }
  .feat-card:nth-child(2) .feat-icon { background: #7B4FD418; }
  .feat-card:nth-child(3) .feat-icon { background: #1DB87A18; }
  .feat-card:nth-child(4) .feat-icon { background: #FFD23F28; }
  .feat-card:nth-child(5) .feat-icon { background: #FF5C2B18; }
  .feat-card:nth-child(6) .feat-icon { background: #7B4FD418; }

  .feat-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
  }
  .feat-card p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── SPECTACLES MOSAIC ── */
  .culture-section {
    background: var(--dark);
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
  }
  .culture-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(123,79,212,.3) 0%, transparent 70%);
    pointer-events: none;
  }
  .culture-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .culture-section h2 { color: #fff; }
  .culture-section .section-label { color: var(--accent-yellow); }
  .culture-section p { color: rgba(255,255,255,.6); font-size: 1.05rem; line-height: 1.7; margin-top: 1rem; }

  .mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 90px);
    gap: 10px;
  }
  .mosaic-tile {
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    transition: transform .2s;
    cursor: default;
  }
  .mosaic-tile:hover { transform: scale(1.04); }
  .mosaic-tile .icon { font-size: 1.6rem; line-height: 1; }
  .mosaic-tile.big { grid-column: span 2; }
  .mosaic-tile.tall { grid-row: span 2; }
  .mosaic-tile.m1 { background: linear-gradient(135deg, #FF5C2B, #FF8C42); }
  .mosaic-tile.m2 { background: linear-gradient(135deg, #7B4FD4, #9B6FF4); }
  .mosaic-tile.m3 { background: linear-gradient(135deg, #1DB87A, #3DD897); }
  .mosaic-tile.m4 { background: linear-gradient(135deg, #FFD23F, #FFBF00); color: rgba(26,26,46,.85); }
  .mosaic-tile.m5 { background: linear-gradient(135deg, #E0427A, #FF7BAA); }
  .mosaic-tile.m6 { background: linear-gradient(135deg, #1a1a2e, #2d2d4e); border: 1.5px solid rgba(255,255,255,.1); }
  .mosaic-tile.m7 { background: linear-gradient(135deg, #0F6E56, #1DB87A); }

  /* ── PRO SECTION ── */
  .pro-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .pro-visual {
    background: linear-gradient(145deg, #1A1A2E, #2D2D4E);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 360px;
  }
  .pro-visual::after {
    content: 'PRO';
    position: absolute;
    right: -20px; top: 20px;
    font-family: 'Syne', sans-serif;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255,255,255,.04);
    line-height: 1;
  }
  .pro-dashboard-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  .pro-stat {
    background: rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 12px 14px;
    flex: 1;
    border: 1px solid rgba(255,255,255,.08);
  }
  .pro-stat-label { font-size: .6rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
  .pro-stat-value { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: #fff; }
  .pro-stat-value span { font-size: .7rem; font-weight: 400; color: var(--accent-green); margin-left: 4px; }

  .pro-chart {
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.07);
    margin-top: 10px;
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
  }
  .bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: rgba(123,79,212,.5);
    transition: background .2s;
    cursor: pointer;
  }
  .bar:hover { background: var(--accent-violet); }
  .bar.highlight { background: var(--accent-orange); }

  .pro-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(123,79,212,.2);
    color: #B394F0;
    border: 1px solid rgba(123,79,212,.4);
    padding: .4rem .9rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
  }

  .pro-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
  .pro-list li {
    display: flex; align-items: flex-start; gap: .7rem;
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.5;
  }
  .pro-list li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: #1DB87A18;
    color: var(--accent-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .pro-list li strong { color: var(--dark); }

  /* ── CTA ── */
  .cta-section {
    background: var(--accent-orange);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '✦';
    position: absolute;
    font-size: 20rem;
    color: rgba(255,255,255,.06);
    top: -60px; left: -40px;
    line-height: 1;
    pointer-events: none;
  }
  .cta-section::after {
    content: '✦';
    position: absolute;
    font-size: 14rem;
    color: rgba(255,255,255,.06);
    bottom: -30px; right: 40px;
    line-height: 1;
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  .cta-section h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
  .cta-section p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2.5rem; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    display: inline-flex; align-items: center; gap: .5rem;
    background: #fff;
    color: var(--accent-orange);
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
  .btn-outline-white {
    display: inline-flex; align-items: center; gap: .5rem;
    background: transparent;
    color: #fff;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.5);
    transition: border-color .2s, background .2s;
  }
  .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
  }
  .footer-logo span { color: var(--accent-orange); }
  .footer-slogan {
    font-size: .85rem;
    color: rgba(255,255,255,.35);
    margin-top: .25rem;
  }
  .footer-copy { font-size: .8rem; color: rgba(255,255,255,.25); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav ul { display: none; }
    .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 3rem; text-align: center; }
    .hero-sub { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .features-grid { grid-template-columns: 1fr; }
    .culture-inner, .pro-section { grid-template-columns: 1fr; gap: 3rem; }
    .section, .pro-section { padding: 4rem 1.5rem; }
    .culture-section { padding: 4rem 1.5rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
    footer nav ul { display: flex; justify-content: center; }
  }