 :root {
    --pink: #FF396F;
    --pink-light: #FF6B96;
    --pink-pale: #FFF0F4;
    --pink-dark: #E0204F;
    --white: #ffffff;
    --dark: #1A0A10;
    --gray: #6B7280;
    --light: #F9FAFB;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,57,111,0.1);
    transition: box-shadow 0.3s;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-icon {
    width: 38px; height: 38px;
    background: var(--pink);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255,57,111,0.35);
  }

  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.5px;
  }

  .logo-text span { color: var(--pink); }

  nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
  }

  nav ul a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
  }

  nav ul a:hover { opacity: 1; color: var(--pink); }

  .nav-cta {
    background: var(--pink);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    opacity: 1 !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(255,57,111,0.3);
    transition: transform 0.2s, box-shadow 0.2s !important;
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,57,111,0.45) !important;
    color: var(--white) !important;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 130px 6% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,57,111,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,57,111,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--pink-pale);
    border: 1px solid rgba(255,57,111,0.2);
    color: var(--pink);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    animation: fadeUp 0.6s ease both;
  }

  .badge::before { content: '✦'; font-size: 10px; }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
    animation: fadeUp 0.6s ease 0.1s both;
  }

  h1 em {
    font-style: italic;
    color: var(--pink);
    position: relative;
    display: inline-block;
  }

  h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: var(--pink);
    border-radius: 2px;
    opacity: 0.3;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 36px;
    animation: fadeUp 0.6s ease 0.2s both;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.3s both;
  }

  .btn-primary {
    background: var(--pink);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(255,57,111,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,57,111,0.45);
  }

  .btn-secondary {
    background: transparent;
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid rgba(26,10,16,0.15);
    transition: border-color 0.2s, color 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }

  .btn-secondary:hover { border-color: var(--pink); color: var(--pink); }

  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    animation: fadeUp 0.6s ease 0.4s both;
  }

  .stat-item { }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
  }
  .stat-num span { color: var(--pink); }
  .stat-label { font-size: 12px; color: var(--gray); font-weight: 500; margin-top: 2px; }

  /* HERO VISUAL */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.8s ease 0.3s both;
  }

  .phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(255,57,111,0.2), 0 10px 30px rgba(0,0,0,0.1);
    border: 8px solid var(--dark);
    position: relative;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-14px) rotate(-2deg); }
  }

  .phone-notch {
    width: 100px; height: 26px;
    background: var(--dark);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative; z-index: 2;
  }

  .phone-screen {
    padding: 10px 16px 16px;
    height: calc(100% - 26px);
    background: var(--pink-pale);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
  }

  .app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
  }

  .app-header-title { font-size: 13px; font-weight: 700; color: var(--dark); }
  .app-avatar {
    width: 28px; height: 28px;
    background: var(--pink);
    border-radius: 50%;
    font-size: 10px;
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
  }

  .balance-card {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 16px;
    padding: 16px;
    color: white;
  }

  .balance-label { font-size: 9px; opacity: 0.8; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
  .balance-amount { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; }
  .balance-sub { font-size: 9px; opacity: 0.8; margin-top: 4px; }

  .quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .qa-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .qa-icon {
    width: 36px; height: 36px;
    background: white;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(255,57,111,0.1);
  }

  .qa-label { font-size: 7px; font-weight: 600; color: var(--dark); text-align: center; }

  .tx-header { font-size: 10px; font-weight: 700; color: var(--dark); }

  .tx-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-radius: 10px;
    padding: 8px 10px;
  }

  .tx-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
  }

  .tx-info { flex: 1; }
  .tx-name { font-size: 9px; font-weight: 600; color: var(--dark); }
  .tx-date { font-size: 8px; color: var(--gray); margin-top: 1px; }
  .tx-amount { font-size: 10px; font-weight: 700; }
  .tx-minus { color: var(--pink); }
  .tx-plus { color: #22C55E; }

  .floating-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    font-size: 11px;
    font-weight: 600;
  }

  .fc-left {
    left: -50px; bottom: 160px;
    animation: floatLeft 4s ease-in-out 1s infinite;
  }

  .fc-right {
    right: -50px; top: 180px;
    animation: floatRight 4s ease-in-out 0.5s infinite;
  }

  @keyframes floatLeft {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-6px) translateY(-8px); }
  }

  @keyframes floatRight {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(6px) translateY(-10px); }
  }

  .fc-label { font-size: 9px; color: var(--gray); font-weight: 400; margin-bottom: 2px; }
  .fc-val { color: var(--pink); font-size: 14px; font-weight: 800; }

  /* FEATURES */
  .section { padding: 80px 6%; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pink-pale);
    color: var(--pink);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px;
  }

  .section-title span { color: var(--pink); font-style: italic; }

  .section-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 48px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-card {
    background: var(--white);
    border: 1.5px solid rgba(26,10,16,0.08);
    border-radius: 20px;
    padding: 28px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: default;
  }

  .feature-card:hover {
    border-color: rgba(255,57,111,0.3);
    box-shadow: 0 12px 40px rgba(255,57,111,0.1);
    transform: translateY(-4px);
  }

  .feature-icon {
    width: 52px; height: 52px;
    background: var(--pink-pale);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: background 0.3s;
  }

  .feature-card:hover .feature-icon { background: var(--pink); }
  .feature-card:hover .feature-icon .icon-inner { filter: grayscale(1) brightness(10); }

  .feature-name { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
  .feature-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

  /* HOW IT WORKS */
  .how-section {
    padding: 80px 6%;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .how-section::before {
    content: '';
    position: absolute;
    top: -300px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,57,111,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .how-section .section-tag {
    background: rgba(255,57,111,0.15);
    color: var(--pink-light);
  }

  .how-section .section-title { color: var(--white); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 32px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,57,111,0.4), transparent);
    pointer-events: none;
  }

  .step-card {
    text-align: center;
    padding: 28px 16px;
    position: relative;
  }

  .step-number {
    width: 52px; height: 52px;
    background: rgba(255,57,111,0.12);
    border: 1.5px solid rgba(255,57,111,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--pink);
    margin: 0 auto 18px;
    position: relative; z-index: 1;
    transition: background 0.3s;
  }

  .step-card:hover .step-number { background: var(--pink); color: white; }
  .step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
  .step-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

  /* EDUKASI */
  .edu-section { padding: 80px 6%; background: var(--light); }

  .edu-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
  }

  .edu-big-stat {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 900;
    color: var(--pink);
    line-height: 1;
    letter-spacing: -4px;
  }

  .edu-big-stat-label {
    font-size: 15px;
    color: var(--gray);
    margin-top: 8px;
    line-height: 1.6;
    max-width: 300px;
  }

  .edu-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.5px;
    color: var(--dark);
    border-left: 4px solid var(--pink);
    padding-left: 24px;
  }

  .edu-quote span { color: var(--pink); }

  .edu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }

  .edu-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    border: 1.5px solid rgba(26,10,16,0.07);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }

  .edu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(255,57,111,0.1);
    border-color: rgba(255,57,111,0.25);
  }

  .edu-card-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
  }

  .edu-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--pink);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 6px;
  }

  .edu-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .edu-card-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }

  .edu-banner {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    color: white;
  }

  .edu-banner-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }

  .edu-banner-text p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.65;
    max-width: 480px;
  }

  .edu-banner-cta {
    background: white;
    color: var(--pink);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
  }

  .edu-banner-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

  /* TESTIMONIALS */
  .testi-section { padding: 80px 6%; }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testi-card {
    background: var(--white);
    border: 1.5px solid rgba(26,10,16,0.07);
    border-radius: 20px;
    padding: 28px;
    transition: box-shadow 0.3s, border-color 0.3s;
  }

  .testi-card:hover {
    border-color: rgba(255,57,111,0.2);
    box-shadow: 0 10px 30px rgba(255,57,111,0.08);
  }

  .testi-stars { color: #FFB800; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }

  .testi-text {
    font-size: 14px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
  }

  .testi-author { display: flex; align-items: center; gap: 12px; }

  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
  }

  .testi-name { font-size: 14px; font-weight: 700; }
  .testi-role { font-size: 12px; color: var(--gray); }

  /* CTA */
  .cta-section {
    padding: 80px 6%;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: 'DORU';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -10px;
  }

  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.15;
    position: relative; z-index: 1;
  }

  .cta-section p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 36px;
    line-height: 1.7;
    position: relative; z-index: 1;
  }

  .cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative; z-index: 1;
  }

  .cta-btn-white {
    background: white;
    color: var(--pink);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  }

  .cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

  .cta-btn-outline {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: background 0.2s, border-color 0.2s;
  }

  .cta-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

  /* FOOTER */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 56px 6% 32px;
  }

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

  .footer-brand .logo-text { color: white; }

  .footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 240px;
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--pink); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom a { color: var(--pink); text-decoration: none; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid, .steps-grid, .testi-grid, .edu-grid { grid-template-columns: 1fr 1fr; }
    .edu-hero-row { grid-template-columns: 1fr; gap: 32px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .features-grid, .steps-grid, .testi-grid, .edu-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    nav ul { display: none; }
    .pricing-card.featured { transform: none; }
  }