@import url('../global-css/footer-pengunjung.css');

/* ========== FEATURE BADGE COLORS ========== */

/* Basic+ - Hijau */
.feature-badge.basic {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Juragankost+ - Kuning/Emas */
.feature-badge.juragankost {
    background: linear-gradient(135deg, #fff100 0%, #ffb300 100%);
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Kostpreneur - Biru Premium */
.feature-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* ========== FEATURE CARD COLORS ========== */

/* Basic+ Cards - Hijau */
.feature-card.basic {
    border: 2px solid #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.02) 0%, white 100%);
    position: relative;
}

.feature-card.basic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 20px 20px 0 0;
}

.feature-card.basic:hover {
    border-color: #20c997;
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15);
    transform: translateY(-8px);
}

.feature-card.basic .feature-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

/* Juragankost+ Cards - Kuning/Emas */
.feature-card.juragankost {
    border: 2px solid #fff100;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.02) 0%, white 100%);
    position: relative;
}

.feature-card.juragankost::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fff100, #ffb300);
    border-radius: 20px 20px 0 0;
}

.feature-card.juragankost:hover {
    border-color: #ffb300;
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.15);
    transform: translateY(-8px);
}

.feature-card.juragankost .feature-icon {
    background: linear-gradient(135deg, #fff100, #ffb300);
    color: #333;
}

/* Kostpreneur Cards - Biru Premium */
.feature-card.premium {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, white 100%);
    position: relative;
}

.feature-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 20px 20px 0 0;
}

.feature-card.premium:hover {
    border-color: #1e40af;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    transform: translateY(-8px);
}

.feature-card.premium .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

/* ========== HIGHLIGHT ITEMS ========== */
.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.highlight-item svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    fill: currentColor;
}

/* ========== BASE FEATURE CARD STYLING ========== */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Hero Section */
.hero-pemilik {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 241, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 400px 400px, 600px 600px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    color: var(--white);
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 241, 0, 0.15);
    color: var(--yellow);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 241, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-highlight {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.hero-mockup {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: var(--light-gray);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--slate-300);
}

.mockup-dots span:first-child { background: var(--red-500); }
.mockup-dots span:nth-child(2) { background: var(--amber-500); }
.mockup-dots span:last-child { background: var(--success); }

.mockup-title {
    font-weight: 600;
    color: var(--gray);
    font-size: 0.9rem;
}

.mockup-content {
    padding: 2rem;
}

.dashboard-card {
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.dashboard-card h4 {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.revenue-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.revenue-growth {
    color: var(--yellow);
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-chart {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-gray);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
}

.bar {
    background: linear-gradient(to top, var(--yellow), var(--gold));
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 20px;
    animation: growUp 1s ease-out;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

.floating-notifications {
    position: absolute;
    top: 1rem;
    right: -2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    animation: slideInRight 0.6s ease-out;
    max-width: 250px;
}

.notification-item i {
    color: var(--yellow);
    font-size: 1.1rem;
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    border-radius: 20px 20px 0 0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--blue);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-desc {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.highlight-item svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    fill: currentColor;
}

/* Pricing Teaser */
.pricing-teaser {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
}

.pricing-teaser-card {
    background: var(--white);
    border-radius: 25px;
    padding: 4rem 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.teaser-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.teaser-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow), var(--gold));
    color: var(--black);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.teaser-actions {
    text-align: center;
}

.price-preview {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-gray);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 0.25rem;
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
}

/* Success Section */
.success-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--border-gray) 100%);
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.success-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 500px;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.metric-item {
    background: var(--white);
    padding: 1rem 0.8rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--text-gray) 100%);
    border-radius: 10px 10px 0 0;
}

.metric-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 117, 187, 0.08);
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue);
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.65rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.1;
    word-break: break-word;
}

.success-benefits {
    margin-bottom: 0.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--border-gray);
}

.benefit-item svg {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--border-gray) 100%);
    color: var(--blue);
    border-radius: 12px;
    padding: 12px;
    flex-shrink: 0;
    border: 1px solid var(--border-gray);
}

.benefit-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.success-stats-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--slate-100);
    position: relative;
}

.success-stats-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2.5rem;
    text-align: left;
}

.stats-chart {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.chart-bar {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1.8rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

.chart-bar:hover {
    border-color: var(--border-gray);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 12px;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 0%;
    opacity: 0.8;
}

.chart-bar[data-percent="85"]::before { 
    width: 85%; 
    background: linear-gradient(90deg, var(--blue-500) 0%, var(--blue-400) 100%);
}

.chart-bar[data-percent="92"]::before { 
    width: 92%; 
    background: linear-gradient(90deg, var(--success) 0%, var(--emerald-400) 100%);
}

.chart-bar[data-percent="78"]::before { 
    width: 78%; 
    background: linear-gradient(90deg, var(--violet-500) 0%, var(--violet-400) 100%);
}

.chart-label {
    position: relative;
    z-index: 2;
    font-weight: 500;
    color: var(--slate-600);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.chart-value {
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: var(--black);
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    min-width: 70px;
    text-align: center;
}

.floating-testimonial {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--slate-100);
    position: relative;
    margin-top: 3rem;
    max-width: 500px;
}

.floating-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--blue) 0%, var(--text-gray) 100%);
    border-radius: 2px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-100);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--border-gray) 100%);
    border: 2px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info strong {
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-800) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-benefits .benefit-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-benefits .benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-benefits .benefit-item svg {
    width: 20px;
    height: 20px;
    color: var(--yellow);
    flex-shrink: 0;
    background: rgba(255, 241, 0, 0.2);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid rgba(255, 241, 0, 0.3);
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Button Styles */
.btn-register-pemilik {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--gold) 100%);
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid var(--yellow);
    box-shadow: 0 8px 25px rgba(255, 241, 0, 0.3);
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.btn-register-pemilik:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 241, 0, 0.4);
    background: linear-gradient(135deg, var(--gold) 0%, var(--yellow) 100%);
    color: var(--black);
    text-decoration: none;
}

.btn-harga-pemilik {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-harga-pemilik:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--white);
    text-decoration: none;
}

.btn-fitur-pemilik {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--blue);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid var(--blue);
    transition: all 0.3s ease;
}

.btn-fitur-pemilik:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 117, 187, 0.3);
    text-decoration: none;
}

.btn-daftar-pemilik {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-600) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid var(--blue);
    box-shadow: 0 8px 25px rgba(27, 117, 187, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-daftar-pemilik:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(27, 117, 187, 0.4);
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue) 100%);
    color: var(--white);
    text-decoration: none;
}

.btn-paket-pemilik {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--blue);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid var(--blue);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-paket-pemilik:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 117, 187, 0.3);
    text-decoration: none;
}

.btn-cta-primary-pemilik {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--gold) 100%);
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid var(--yellow);
    box-shadow: 0 8px 25px rgba(255, 241, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-cta-primary-pemilik:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 241, 0, 0.4);
    background: linear-gradient(135deg, var(--gold) 0%, var(--yellow) 100%);
    color: var(--black);
    text-decoration: none;
}

.btn-cta-secondary-pemilik {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-cta-secondary-pemilik:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--white);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-notifications {
        position: static;
        margin-top: 2rem;
    }
    
    .hero-mockup {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .success-metrics {
        margin: 1.5rem auto;
        gap: 0.6rem;
    }
    
    .metric-item {
        padding: 1rem 0.8rem;
    }
    
    .metric-value {
        font-size: 1.4rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    .floating-testimonial {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .floating-testimonial::before {
        border-radius: 16px 0 0 16px;
    }
    
    .cta-content {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .success-metrics {
        gap: 0.5rem;
    }
    
    .metric-item {
        padding: 0.8rem 0.6rem;
        border-radius: 8px;
    }
    
    .metric-value {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .metric-label {
        font-size: 0.6rem;
        line-height: 1;
    }
    
    .floating-testimonial {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .floating-testimonial::before {
        border-radius: 12px 0 0 12px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-item svg {
        margin: 0 auto;
    }
}