:root {
    /* ProduShop Color Palette */
    --primary: #2563EB;
    /* Primary Blue */
    --primary-hover: #1D4ED8;
    /* Darker Blue for hover */
    --secondary: #0D1B3D;
    /* Dark Navy */
    --background: #F3F4F6;
    /* Light Gray */
    --surface: #FFFFFF;
    --text-main: #0D1B3D;
    /* Dark Navy for text */
    --text-muted: #64748B;
    /* Slate Gray */
    --success: #10B981;
    /* Green */
    --warning: #FBBF24;
    /* Yellow */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(37, 99, 235, 0.1);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-main);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mt-12 {
    margin-top: 3rem;
}

.text-primary {
    color: var(--primary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

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

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

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

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px;
}

/* --- Login Link --- */
.login-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
}
.login-link strong {
    color: var(--primary);
    margin-left: 4px;
}
.login-link:hover {
    opacity: 0.8;
}

/* --- Header --- */
.header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.logo-icon {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

/* --- Hero Section Visibility --- */
.hero-desktop {
    display: block;
}

.hero-mobile {
    display: none !important;
    padding-top: 60px !important
}

/* --- Hero Section --- */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}



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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.eyebrow svg {
    width: 16px;
    height: 16px;
}

.headline {
    font-size: 3rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline span {
    color: var(--primary);
}

.subhead {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-bullets li svg {
    color: var(--success);
    width: 20px;
    height: 20px;
}

.hero-social-top {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--background);
    margin-left: -12px;
}

.avatars img:first-child {
    margin-left: 0;
}

.hero-social-top span {
    font-size: 0.75rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: #0D1B3D;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(13, 27, 61, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: 2px solid #334155;
    z-index: 2;
    transform: rotate(-2deg) perspective(1000px) rotateY(15deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) perspective(1000px) rotateY(0deg) scale(1.02);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #0D1B3D;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #F3F4F6;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.glow-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.15;
    filter: blur(40px);
    z-index: 1;
}

/* --- Section Titles --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.section-title span {
    color: var(--primary);
}

/* --- Hook Section --- */
.hook-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--background) 0%, #FAEDEB 100%);
}

.hook-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.pain-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.pain-icon {
    width: 32px;
    height: 32px;
    color: #EF4444;
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.good-news {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
}

.good-news h3 {
    color: white;
    margin-bottom: 16px;
}

.good-news p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Benefits Section --- */
.benefits-section {
    padding: 100px 0;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(216, 91, 122, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box svg {
    width: 28px;
    height: 28px;
}

.benefit-item h4 {
    font-size: 1.5rem;
}

.benefit-item p {
    color: var(--text-muted);
}

/* --- Offer Section --- */
.offer-section {
    padding: 100px 0;
    background: #FDF7F5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.btn-secondary {
    background: #F3F4F6;
    color: var(--text-main);
    border: none;
}

.btn-secondary:hover {
    background: #E5E7EB;
}

.mt-6 {
    margin-top: 1.5rem;
}

.pricing-card.accent {
    background: var(--surface);
    border: 2px solid var(--primary);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.pricing-card.accent::before {
    content: 'MAIS ESCOLHIDO';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 32px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: bold;
}

.price .amount {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.price .period {
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.pricing-features li svg {
    color: var(--success);
    width: 18px;
    height: 18px;
}

/* --- Future Pacing --- */
.future-pacing {
    padding: 100px 0;
    overflow: hidden;
}

.future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.future-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.circle-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

.mockup-secondary {
    max-width: 80%;
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.mockup-secondary:hover {
    transform: rotate(0deg) scale(1.02);
}

.future-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.future-content p strong {
    color: var(--text-main);
}

/* --- Guarantee & About --- */
.trust-section {
    padding: 80px 0;
    background: var(--surface);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.shield-icon {
    width: 48px;
    height: 48px;
    color: var(--success);
    margin-bottom: 24px;
}

.logo-icon-large {
    width: 64px;
    height: 64px;
    background: rgba(216, 91, 122, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.logo-icon-large svg {
    width: 32px;
    height: 32px;
}

.guarantee-card h3,
.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.guarantee-card p,
.about-card p {
    color: var(--text-muted);
}

.about-card {
    padding: 32px;
}

/* --- Two Choices --- */
.crossroads-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #FDF7F5, var(--background));
}

.choices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.choice {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    position: relative;
}

.choice-bad {
    background: #F3F4F6;
    border: 1px dashed #D1D5DB;
    opacity: 0.8;
}

.choice-good.accent {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(216, 91, 122, 0.15);
}

.choice-number {
    width: 40px;
    height: 40px;
    background: var(--text-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 24px;
}

.choice-good .choice-number {
    background: var(--primary);
}

.choice p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.choice-good p {
    color: var(--text-main);
    font-weight: 500;
}

.cta-final {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* --- FAQ --- */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

.accordion-header .icon {
    transition: transform 0.3s;
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #FAFAFA;
}

.accordion-content p {
    padding: 0 24px 24px;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer {
    background: var(--surface);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .hero-grid,
    .pricing-grid,
    .future-grid,
    .trust-grid,
    .choices-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .headline {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pain-points-grid {
        grid-template-columns: 1fr;
    }

    .future-grid .future-image {
        grid-row: 2;
        /* Move image below text on mobile */
    }
}

@media (max-width: 768px) {
    .hero-desktop {
        display: none !important;
    }

    .hero-mobile {
        display: flex !important;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 0 0;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        flex: 1;
        gap: 8px; /* Reduced gap */
        justify-content: flex-start;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .hero-social-top {
        margin-bottom: 8px; /* Reduced margin */
        justify-content: center;
    }

    .hero-social-top span {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .headline {
        font-size: 2.15rem;
        line-height: 1.15;
        margin-bottom: 8px; /* Reduced margin */
    }

    .subhead {
        font-size: 0.95rem;
        margin-bottom: 12px; /* Reduced margin */
        max-width: 95%;
    }

    .hero-bullets {
        margin-bottom: 12px; /* Reduced margin */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px; /* Reduced gap */
    }

    .hero-bullets li {
        margin-bottom: 0;
        justify-content: center;
        font-size: 0.9rem;
    }

    .hero-ctas {
        width: 100%;
        margin-top: 0;
        flex-direction: column;
        gap: 12px;
    }

    .btn-large {
        padding: 16px 20px;
        font-size: 1.05rem;
        width: 100%;
        justify-content: center;
    }

    .hero-content small {
        margin-top: 12px;
        display: block;
        text-align: center;
    }

    .hero-image-wrapper {
        margin-top: 32px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .hero-img.floating {
        animation: none;
        width: 100% !important;
        max-width: 320px;
        margin-bottom: 0;
        display: block;
    }

    /* Ajustes para caber melhor em celulares pequenos como iPhone SE */
    @media (max-height: 750px) {
        .hero {
            padding: 85px 0 0 0;
        }

        .headline {
            font-size: 1.85rem;
            margin-bottom: 12px;
        }

        .subhead {
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .hero-bullets {
            gap: 8px;
            margin-bottom: 16px;
        }

        .hero-bullets li {
            font-size: 0.8rem;
        }

        .hero-img.floating {
            max-width: 250px;
        }
    }

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

    .social-proof {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* --- Features Section --- */
.features-section {
    padding: 100px 0;
    background-color: #FAFAFA;
    position: relative;
}

.features-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card-visual {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.feature-visual-icon {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.feature-card-content {
    padding: 32px;
    flex-grow: 1;
}

.feature-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
    font-weight: 700;
}

.feature-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Hook Section 2-Column Layout --- */
.hook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hook-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .hook-text-col .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.hook-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hook-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hook-text-col .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.hook-text-col .pain-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.hook-text-col .pain-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.hook-text-col .pain-card p {
    font-size: 0.9rem;
}

/* --- Image Benefits Section --- */
.benefits-grid-image {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-img-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.benefit-img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-img-wrapper {
    width: 100%;
    height: 320px;
}

.benefit-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.benefit-content {
    padding: 32px 24px;
    flex-grow: 1;
}

.benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.benefit-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Apple-like Pain Points --- */
.pain-section {
    padding: 100px 0;
    background-color: var(--background);
}

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

@media (max-width: 992px) {
    .apple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.apple-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.apple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.apple-card-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1;
}

.apple-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.apple-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
}

@media (max-width: 768px) {
    .pain-section {
        padding: 80px 0;
    }
    .apple-card {
        padding: 32px 24px;
        border-radius: 28px;
    }
    .apple-card h3 {
        font-size: 1.35rem;
    }
    .apple-card p {
        font-size: 1rem;
    }
}

/* --- Sections 3, 4, 5 --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 24px;
}
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}
.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}
.feature-row:last-child {
    margin-bottom: 0;
}
.feature-text {
    flex: 1;
}
.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-main);
    font-weight: 700;
}
.feature-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.feature-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature-row {
        flex-direction: column !important;
        gap: 32px !important;
        margin-bottom: 60px !important;
    }
    .feature-image img {
        max-width: 280px;
    }
}

/* --- Google Review Cards --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.google-review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    text-align: left;
    border: 1px solid #e0e0e0;
}

.google-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.google-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.google-user-info {
    flex: 1;
}

.google-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #202124;
    margin: 0;
    line-height: 1.2;
}

.google-meta {
    font-size: 0.8rem;
    color: #70757a;
    margin-top: 2px;
}

.google-google-icon {
    width: 20px;
    height: 20px;
}

.google-stars {
    color: #fbbc04;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.google-text {
    font-size: 0.95rem;
    color: #3c4043;
    line-height: 1.5;
}