/* ========================================
   BoostBisnes - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #818CF8;
    --secondary: #10B981;
    --accent: #F59E0B;
    --dark: #1F2937;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.25rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-boost {
    color: var(--primary);
}

.logo-bisnes {
    color: var(--gray-900);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.hero .highlight {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Google Card Animation */
.hero-image {
    display: flex;
    justify-content: center;
}

.google-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 24px;
    width: 100%;
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
}

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

.google-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-100);
    padding: 12px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.search-icon {
    display: flex;
}

.google-search-bar span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.search-result {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
}

.result-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.result-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.result-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.stars {
    color: var(--accent);
}

.rating-text {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.result-status {
    font-size: 0.8rem;
    font-weight: 600;
}

.result-status.open {
    color: var(--secondary);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--white);
}

.problem h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.problem-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-header p {
    color: var(--gray-500);
    margin-top: 12px;
}

/* Why GBP Section */
.why-gbp {
    padding: 80px 0;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: var(--white);
}

.why-gbp-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-gbp-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.why-gbp-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.why-gbp-list {
    list-style: none;
}

.why-gbp-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    opacity: 0.95;
}

.why-gbp-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.why-gbp-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gbp-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.gbp-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.gbp-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .why-gbp-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-gbp-text h2 {
        font-size: 1.5rem;
    }

    .why-gbp-stats {
        flex-direction: row;
    }

    .gbp-stat {
        flex: 1;
        padding: 20px;
    }

    .gbp-stat-number {
        font-size: 2rem;
    }
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-top: -20px;
    margin-bottom: 40px;
}

/* Reveal Section - The Big Reveal */
.reveal-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    text-align: center;
}

.reveal-content {
    max-width: 800px;
    margin: 0 auto;
}

.reveal-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.reveal-section h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.reveal-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
}

.reveal-highlight {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-top: 24px;
}

.reveal-highlight p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .reveal-section h2 {
        font-size: 1.5rem;
    }

    .reveal-subtitle {
        font-size: 1rem;
    }

    .reveal-highlight {
        padding: 20px;
    }
}

/* Why Points in GBP Section */
.why-point {
    margin-bottom: 28px;
}

.why-point h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.why-point p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* GBP Stat Highlight */
.gbp-stat.highlight {
    background: rgba(16, 185, 129, 0.3);
    border: 2px solid rgba(16, 185, 129, 0.5);
}

/* Problem Alt Section */
.problem-alt {
    padding: 80px 0;
    background: var(--gray-50);
}

.problem-alt h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.problem-alt .problem-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-alt .problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-alt .problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-alt .problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.problem-alt .problem-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

@media (max-width: 992px) {
    .problem-alt .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .problem-alt .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--white);
}

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

.portfolio-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.portfolio-category {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.portfolio-location {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.portfolio-card h3 {
    margin-bottom: 4px;
}

.portfolio-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.portfolio-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background: var(--white);
    border-radius: var(--radius);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.portfolio-screenshot {
    width: 100%;
    border-radius: var(--radius);
    margin-top: 8px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-screenshot:hover {
    transform: scale(1.02);
}

.portfolio-increase {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.pricing .section-header h2,
.pricing .section-header p {
    color: var(--white);
}

.pricing .section-header p {
    color: var(--gray-400);
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 16px;
}

.pricing-amount {
    margin-bottom: 16px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
    vertical-align: top;
}

.pricing-amount .price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-900);
}

.pricing-amount .period {
    font-size: 1.25rem;
    color: var(--gray-500);
}

.pricing-monthly {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.pricing-desc {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--white);
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

.guarantee-content h2 {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 1.75rem;
}

.guarantee-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guarantee-points li {
    color: var(--gray-700);
    font-weight: 500;
}

@media (max-width: 768px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .guarantee-icon {
        font-size: 4rem;
    }

    .guarantee-points {
        align-items: center;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    margin-bottom: 12px;
    color: var(--gray-900);
}

.faq-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--gray-100);
}

.cta .btn-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gray-50);
}

.contact-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

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

.contact-form .btn {
    width: 100%;
}

.form-success {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.form-success h3 {
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-500);
}

/* Feedback Section (Subtle) */
.feedback-section {
    padding: 24px 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.feedback-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.feedback-toggle {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.875rem;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s ease;
}

.feedback-toggle:hover {
    color: var(--gray-700);
}

.feedback-form-container {
    display: none;
    margin-top: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.feedback-form-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.feedback-rating p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.rating-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-btn:hover {
    border-color: var(--primary);
    transform: scale(1.1);
}

.rating-btn.selected {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
    transform: scale(1.15);
}

.feedback-form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.875rem;
    resize: none;
    margin-bottom: 12px;
}

.feedback-form-container textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.feedback-success {
    display: none;
    color: var(--secondary);
    font-size: 0.875rem;
    margin-top: 12px;
}

.feedback-success.show {
    display: block;
}

/* Footer */
.footer {
    padding: 60px 0 24px;
    background: var(--gray-900);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700);
}

.footer-brand p {
    color: var(--gray-400);
    margin-top: 16px;
    max-width: 300px;
}

.footer .logo-bisnes {
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero .container {
        gap: 40px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: 1;
    }

    .google-card {
        max-width: 320px;
    }

    .problem-grid,
    .services-grid,
    .portfolio-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero h1 {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-amount .price {
        font-size: 3rem;
    }

    .portfolio-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .portfolio-stat .arrow {
        display: none;
    }

    .portfolio-stat .before,
    .portfolio-stat .after {
        min-width: auto;
    }
}
