/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 17px;
    scroll-padding-top: 70px;
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
}

/* Scrollbar styling for WebKit-based browsers */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background-color: #ff1493;
  border-radius: 6px;
  border: 2px solid #f0f0f0;
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff1493 #f0f0f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: white;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Section  */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  padding: 1rem 2rem;
  box-shadow: none;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

header.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff1493;
}

.nav-links {
  display: flex;
  gap: 24px; 
}

/* Default: hidden on mobile */
@media (min-width: 1024px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .nav-links li a {
    color: #222;
    padding: 0;
    border: none;
    font-weight: 600;
  }

  .mobile-menu {
    display: none;
  }
}

/* Hero Section */
.hero {
    background: white;
    padding: clamp(20px, 8vw, 85px) 0;
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    margin-bottom: clamp(40px, 8vw, 80px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 3.5vw, 4rem); 
    font-weight: bold;
    color: #333;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: clamp(1rem, 1vw, 3.5rem); 
    font-weight: 100;
    color: #333;
    margin-bottom: 1.6rem;
    line-height: 1.6;
}

.hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.2rem) !important; 
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6; 
}

.hero-buttons {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem); 
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff1493;
    color: white;
    padding: clamp(12px, 2vw, 16px) clamp(16px, 2vw, 20px);
    border: none;
    border-radius: 8px;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px; 
}

.btn-primary:hover {
    background: #e6127a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ff1493;
    padding: clamp(12px, 2vw, 16px) clamp(16px, 2vw, 20px);
    border: 2px solid #ff1493;
    border-radius: 8px;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 140px; 
}

.btn-secondary:hover {
    background: #ff1493;
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    width: 100%;
    position: relative;
}

#slideshow {
    width: 100%;
    height: clamp(280px, 40vw, 400px);
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

#slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.7s ease-in-out;
}

/* Time Stealing Section */
.time-section {
    padding: clamp(20px, 4vw, 40px) 0;
    position: relative;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(30px, 6vw, 50px);
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch; 
}

.time-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    margin-bottom: 1rem;
    color: #333;
}

.time-section p {
    text-align: center;
    color: #666;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 1rem;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem; 
}

.comparison-card {
    background: #fff;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    flex: 1;
    display: flex;
    flex-direction: column; 
}

.comparison-header .icon {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: clamp(1.5rem, 3vw, 2rem);
    flex-shrink: 0;
}

.icon.cross {
    background: #141414;
}

.icon.check {
    background: #ff1476;
}

.line-with {
    background: transparent;
    color: #ff1493;
    border: 2px solid #2c2c2c;
}

.line-without {
    background: transparent;
    color: #1f1f1f;
    border: 2px solid #ff1493;
}

.comparison-header h3 {
    margin: 0;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem); 
}

.comparison-list {
    list-style: none;
    flex-grow: 1; 
}

.comparison-list li {
    position: relative;
    padding-left: 2.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-left: calc(0.5rem + 1rem);
    line-height: 1.5;
}

/* Untuk list WITHOUT automation */
.without .comparison-list li::before {
    content: "✗";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #2e2e2e;
    font-size: 1rem;
    font-weight: bold;
}

/* Untuk list WITH automation */
.with .comparison-list li::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #ff1476;
    font-size: 1rem;
    font-weight: bold;
}

.cta-button {
    text-align: center;
    margin-top: 2rem;
}

/* Transform Section */
.transform-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: white;
    text-align: center;
}

.transform-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    text-align: center;
    font-weight: 800;
    margin-bottom: 30px;
    background: #e91e63;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.transform-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.features-section {
    position: relative;
    padding-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 4vw, 30px);
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 clamp(1rem, 5vw, 3rem);
  align-items: stretch;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: clamp(50px, 10vw, 55px);
    height: clamp(50px, 10vw, 55px);
    border-radius: 20px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 5vw, 32px);
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-icon.pink {
    background: linear-gradient(135deg, #e91e63, #ad1457);
}

.feature-icon.black {
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.feature-title {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-description {
    color: #666;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
    flex-grow: 1;
}

/* About Section */
.about-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: white;
}

.about-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    order: 2;
}
        
/* CTA Section  */
.cta-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: #333;
    color: white;
}

.cta-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    margin-bottom: 1rem;
}

.cta-section .subtitle {
    text-align: center;
    color: #ccc;
    font-size: clamp(1rem, 2vw, 1.1rem) !important;
    margin-bottom: 3rem;
}

.cta-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 6vw, 4rem);
    align-items: start;
}

.cta-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
}

.cta-steps ol {
    list-style-type: decimal;
    padding: clamp(1.5rem, 4vw, 2rem);
}

.cta-steps ul {
    list-style-type: square;
    padding: clamp(1rem, 0vw, 1rem);
    margin: 10;
}

.cta-steps h3 {
    color: white;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
/*    background: #ff1493;
    color: white; */
    width: clamp(30px, 6vw, 35px);
    height: clamp(30px, 6vw, 35px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.step-content h4 {
    color: white;
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #ccc;
    font-size: clamp(0.9rem, 1.8vw, 1rem) !important;
    line-height: 1.5;
}


#cta-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.5s ease-in-out;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
  footer h2 {
    font-size: 1.5rem;
  }

  footer p {
    font-size: 1rem;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icons img {
    width: 32px;
    height: 32px;
    padding: 5px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links {
    justify-content: center;
    gap: 20px;
  }
}

/* Mobile Responsive Design - ENHANCED */
@media (max-width: 768px) {
    .container {
        padding: 0 clamp(12px, 4vw, 20px); 
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        border-radius: 0 0 12px 12px; 
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
        text-align: center;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .time-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .comparison-list li {
        font-size: 0.9rem;
        padding-left: 2rem;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 32px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print styles */
@media print {
    .nav-links,
    .mobile-menu,
    .btn-primary,
    .btn-secondary,
    .cta-form,
    .social-links {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border-width: 2px;
    }
    
    .feature-card {
        border: 2px solid #333;
    }
}

/* We Get It Section */


