 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Soft Purple Scale */
            --purple-700: #6B1DE0;
            --purple-600: #7D3AE8;
            --purple-500: #9056ED;
            --purple-100: #E8DAFB;
            --purple-50: #F5F0FF;
            
            /* Soft Yellow Scale */
            --yellow-600: #FFDD33;
            --yellow-100: #FFFBEB;
            --yellow-50: #FFFEF7;
            
            /* Neutrals */
            --bg-white: #FFFFFF;
            --bg-soft: #FAFBFC;
            --bg-softer: #F8F9FA;
            --text-dark: #2D3748;
            --text-medium: #4A5568;
            --text-light: #718096;
            --border-light: #E2E8F0;
            
            /* Soft Shadows */
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 8px rgba(0,0,0,0.06);
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            color: var(--text-dark);
            background: var(--bg-white);
            line-height: 1.6;
        }

        h1, h2, h3 {
		 font-family: 'Google Sans', -apple-system, sans-serif;
            color: var(--grey-700);
            font-weight: 700;
            line-height: 1.3;
        }

        /* Header */
        header {
            background: rgba(255,255,255,0.98);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 16px 0;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-cta {
            display: inline-block;
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9375rem;
            text-decoration: none;
            background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
            color: white;
            box-shadow: 0 4px 12px rgba(107,29,224,0.25);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(107,29,224,0.3);
        }

        .logo {
            width: 140px;
            height: 44px;            
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--purple-700);
        }
		
		.logo img {height:44px;}

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 80px 0;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
            color: white;
            box-shadow: 0 4px 12px rgba(107,29,224,0.25);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(107,29,224,0.3);
        }

        .btn-secondary {
            background: white;
            color: var(--purple-700);
            border: 2px solid var(--purple-700);
        }

        .btn-secondary:hover {
            background: var(--purple-50);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(180deg, var(--purple-50) 0%, var(--bg-white) 100%);
            padding: 60px 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--text-medium);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: nowrap;
        }

        .hero-image {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 10px;
            box-shadow: var(--shadow-md);			
        }

        .behance-box {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;			
        }
		.behance-box img {
		width:100%;
		border-radius: 6px;}

        /* Section Label */
        .section-label {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, var(--purple-50), var(--yellow-50));
            border: 1px solid var(--purple-100);
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--purple-700);
            margin-bottom: 24px;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        /* Card Grid */
        .card-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .card-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .card-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* Card */
        .card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .card-icon svg {
            width: 24px;
            height: 24px;
        }

        .card-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .card-text {
            color: var(--text-medium);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* Horizontal Card */
        .card-horizontal {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
        }

        .card-horizontal .card-icon {
            margin-bottom: 0;
            flex-shrink: 0;
            width: 40px;
            height: 40px;
        }

        .card-horizontal .card-icon svg {
            width: 20px;
            height: 20px;
        }

        .card-horizontal .card-title {
            font-size: 0.9375rem;
        }

        /* Check List */
        .check-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 32px 0;
        }

        .check-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .check-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--purple-50), var(--yellow-50));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .check-icon svg {
            width: 18px;
            height: 18px;
            color: var(--purple-700);
        }

        .check-text {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        /* Notification Box */
        .notification-box {
            background: linear-gradient(135deg, var(--yellow-50), var(--yellow-100));
            border: 1px solid var(--yellow-600);
            border-radius: 10px;
            padding: 16px 20px;
            margin-top: 32px;
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--text-dark);
            text-align: center;
        }

        /* Problem Section Card */
        .problem-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: var(--shadow-sm);
        }

        .problem-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .problem-card p {
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .highlight-text {
            color: var(--purple-700);
            font-weight: 600;
        }

        /* Timeline */
        .timeline {
            background: var(--bg-softer);
            border-radius: 12px;
            padding: 40px;
            margin: 40px 0;
        }

        .timeline-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .timeline-wrapper::-webkit-scrollbar {
            display: none;
        }

        .timeline-grid {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            min-width: 100%;
        }

        .timeline-line {
            position: absolute;
            top: 28px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: var(--border-light);
            z-index: 0;
        }

        .timeline-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            min-width: 120px;
        }

        .timeline-dot {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--yellow-600), #FFE566);
            border-radius: 50%;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--purple-700);
            font-size: 1.25rem;
            box-shadow: 0 4px 12px rgba(255,221,51,0.3);
        }

        .timeline-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .timeline-detail {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* Timeline Mobile Scroll Indicator */
        .timeline-scroll-hint {
            display: none;
            text-align: center;
            margin-top: 16px;
            font-size: 0.8125rem;
            color: var(--text-light);
        }

        /* Stat Card */
        .stat-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 28px;
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--purple-700);
            position: relative;
            display: inline-block;
            margin-bottom: 8px;
        }

        .stat-number::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 3px;
            background: var(--yellow-600);
            border-radius: 2px;
        }

        .stat-label {
            color: var(--text-medium);
            font-size: 0.9375rem;
        }

        /* Stats Wrapper for Mobile Scroll */
        .stats-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .stats-wrapper::-webkit-scrollbar {
            display: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stats-scroll-hint {
            display: none;
            text-align: center;
            margin-top: 16px;
            font-size: 0.8125rem;
            color: var(--text-light);
        }

        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-dark);
        }

        .faq-question:hover {
            background: var(--bg-softer);
        }

        .faq-chevron {
            transition: all 0.3s;
            color: var(--purple-700);
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .faq-item.active .faq-chevron {
            transform: rotate(0deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 24px 20px;
            color: var(--text-medium);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--purple-50), var(--yellow-50));
            border: 1px solid var(--purple-100);
            border-radius: 16px;
            padding: 48px;
            text-align: center;
        }

        .cta-section h2 {
            margin-bottom: 16px;
        }

        .cta-section h3 {
            font-size: 1.5rem;
            margin-bottom: 24px;
            font-weight: 600;
        }

        /* Final Section */
        .final-section {
            background: var(--bg-softer);
            border-radius: 16px;
            padding: 56px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .final-section h2 {
            font-size: 1.875rem;
            margin-bottom: 24px;
        }

        .final-section p {
            font-size: 1.125rem;
            color: var(--text-medium);
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .final-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 32px;
        }

        /* Footer */
        footer {
            background: var(--bg-softer);
            border-top: 1px solid var(--border-light);
            padding: 40px 0;
        }

        footer .logo {
            margin: 0 auto 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-cta {
                flex-direction: column;
                flex-wrap: wrap;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .card-grid-2,
            .card-grid-3,
            .card-grid-4 {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                display: flex;
                flex-direction: row;
                min-width: 100%;
                gap: 16px;
            }

            .stat-card {
                min-width: 240px;
                flex: 0 0 240px;
            }

            .stats-scroll-hint {
                display: block;
            }

            .check-list {
                grid-template-columns: 1fr;
            }

            .timeline-grid {
                flex-direction: row;
                gap: 0;
                justify-content: flex-start;
                min-width: 600px;
            }

            .timeline-step {
                min-width: 140px;
                flex: 0 0 140px;
            }

            .timeline-line {
                display: block;
                left: 70px;
                right: 70px;
            }

            .timeline-scroll-hint {
                display: block;
            }

            .final-cta {
                flex-direction: column;
            }

            footer {
                padding: 32px 0;
            }

            footer .logo {
                width: 120px;
                height: 40px;
            }

            footer p {
                font-size: 0.875rem;
            }
        }

        /* Mobile Optimization - 360px and below */
        @media (max-width: 480px) {
            section {
                padding: 60px 0;
            }

            .container {
                padding: 0 16px;
            }

            header {
                padding: 12px 0;
            }

            .logo {
                width: 120px;
                height: 40px;
                font-size: 0.9375rem;
            }

            .hero {
                padding: 40px 0;
            }

            .hero h1 {
                font-size: 1.75rem;
                line-height: 1.25;
            }

            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.6;
            }

            .section-title {
                font-size: 1.625rem;
                margin-bottom: 32px;
            }

            .section-label {
                font-size: 0.8125rem;
                padding: 6px 14px;
            }

            .card {
                padding: 20px;
            }

            .card-horizontal {
                padding: 14px 16px;
            }

            .card-icon {
                width: 40px;
                height: 40px;
            }

            .card-icon svg {
                width: 20px;
                height: 20px;
            }

            .card-title {
                font-size: 0.9375rem;
            }

            .btn {
                padding: 12px 24px;
                font-size: 0.9375rem;
            }

            .problem-card {
                padding: 28px 20px;
            }

            .problem-card h3 {
                font-size: 1.25rem;
            }

            .problem-card p {
                font-size: 0.9375rem;
            }

            .timeline {
                padding: 28px 20px;
            }

            .timeline-wrapper {
                margin: 0 -20px;
                padding: 0 20px;
            }

            .timeline-dot {
                width: 48px;
                height: 48px;
                font-size: 1.125rem;
            }

            .timeline-label {
                font-size: 0.9375rem;
            }

            .stat-card {
                padding: 20px;
            }

            .stats-wrapper {
                margin: 0 -16px;
                padding: 0 16px;
            }

            .stat-card {
                min-width: 220px;
                flex: 0 0 220px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.875rem;
            }

            .check-icon {
                width: 28px;
                height: 28px;
            }

            .check-icon svg {
                width: 16px;
                height: 16px;
            }

            .check-text {
                font-size: 0.875rem;
            }

            .faq-question {
                padding: 16px 18px;
                font-size: 0.9375rem;
            }

            .faq-answer-content {
                padding: 0 18px 16px;
                font-size: 0.9375rem;
            }

            .cta-section {
                padding: 32px 24px;
            }

            .cta-section h2 {
                font-size: 1.5rem;
            }

            .cta-section h3 {
                font-size: 1.25rem;
            }

            .final-section {
                padding: 40px 24px;
            }

            .final-section h2 {
                font-size: 1.5rem;
            }

            .final-section p {
                font-size: 1rem;
            }

            .notification-box {
                padding: 14px 16px;
                font-size: 0.875rem;
            }
        }

        /* Extra Small Mobile - 360px */
        @media (max-width: 360px) {
            .container {
                padding: 0 12px;
            }

            section {
                padding: 48px 0;
            }

            header {
                padding: 10px 0;
            }

            .hero {
                padding: 32px 0;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .hero-subtitle {
                font-size: 0.9375rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .card {
                padding: 16px;
            }

            .card-horizontal {
                padding: 12px 14px;
                gap: 12px;
            }

            .card-horizontal .card-icon {
                width: 36px;
                height: 36px;
            }

            .card-horizontal .card-icon svg {
                width: 18px;
                height: 18px;
            }

            .card-title {
                font-size: 0.875rem;
                line-height: 1.4;
            }

            .btn {
                padding: 11px 20px;
                font-size: 0.875rem;
            }

            .header-cta {
                font-size: 0.6875rem;
                padding: 7px 10px;
            }

            .problem-card {
                padding: 24px 16px;
            }

            .problem-card h3 {
                font-size: 1.125rem;
            }

            .timeline {
                padding: 24px 16px;
            }

            .timeline-wrapper {
                margin: 0 -16px;
                padding: 0 16px;
            }

            .timeline-step {
                min-width: 120px;
                flex: 0 0 120px;
            }

            .timeline-dot {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }

            .stats-wrapper {
                margin: 0 -12px;
                padding: 0 12px;
            }

            .stat-card {
                min-width: 200px;
                flex: 0 0 200px;
                padding: 16px;
            }

            .stat-number {
                font-size: 1.75rem;
            }

            .faq-question {
                padding: 14px 16px;
                font-size: 0.875rem;
            }

            .faq-answer-content {
                padding: 0 16px 14px;
                font-size: 0.875rem;
            }

            .cta-section {
                padding: 28px 16px;
            }

            .cta-section h2 {
                font-size: 1.375rem;
            }

            .cta-section h3 {
                font-size: 1.125rem;
            }

            .final-section {
                padding: 28px 16px;
            }

            .final-section h2 {
                font-size: 1.375rem;
            }

            .final-section p {
                font-size: 0.9375rem;
            }

            .check-text {
                font-size: 0.8125rem;
            }

            .notification-box {
                font-size: 0.8125rem;
                padding: 12px 14px;
            }

            .whatsapp-float {
                bottom: 16px;
                right: 16px;
                width: 50px;
                height: 50px;
            }

            .whatsapp-float svg {
                width: 26px;
                height: 26px;
            }

            footer {
                padding: 28px 0;
            }

            footer p {
                font-size: 0.8125rem;
            }
        }

        /* Ultra Small Mobile - 320px */
        @media (max-width: 320px) {
            .container {
                padding: 0 10px;
            }

            section {
                padding: 40px 0;
            }

            header {
                padding: 8px 0;
            }

            .header-container {
                padding: 0 10px;
            }

            .logo img {
                height: 32px !important;
            }

            .header-cta {
                font-size: 0.625rem;
                padding: 6px 9px;
                border-radius: 6px;
            }

            .hero {
                padding: 28px 0;
            }

            .hero h1 {
                font-size: 1.375rem;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 0.875rem;
                margin-bottom: 24px;
            }

            .section-title {
                font-size: 1.375rem;
                margin-bottom: 24px;
            }

            .section-label {
                font-size: 0.75rem;
                padding: 5px 12px;
            }

            .card {
                padding: 14px;
            }

            .card-horizontal {
                padding: 10px 12px;
                gap: 10px;
            }

            .card-horizontal .card-icon {
                width: 32px;
                height: 32px;
            }

            .card-horizontal .card-icon svg {
                width: 16px;
                height: 16px;
            }

            .card-title {
                font-size: 0.8125rem;
            }

            .btn {
                padding: 10px 16px;
                font-size: 0.8125rem;
            }

            .problem-card {
                padding: 20px 14px;
            }

            .problem-card h3 {
                font-size: 1rem;
            }

            .problem-card p {
                font-size: 0.875rem;
            }

            .timeline {
                padding: 20px 12px;
            }

            .timeline-wrapper {
                margin: 0 -14px;
                padding: 0 14px;
            }

            .timeline-step {
                min-width: 110px;
                flex: 0 0 110px;
            }

            .timeline-dot {
                width: 40px;
                height: 40px;
                font-size: 0.9375rem;
            }

            .timeline-label {
                font-size: 0.8125rem;
            }

            .timeline-detail {
                font-size: 0.75rem;
            }

            .stats-wrapper {
                margin: 0 -10px;
                padding: 0 10px;
            }

            .stat-card {
                min-width: 180px;
                flex: 0 0 180px;
                padding: 14px;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.8125rem;
            }

            .check-icon {
                width: 26px;
                height: 26px;
            }

            .check-icon svg {
                width: 14px;
                height: 14px;
            }

            .check-text {
                font-size: 0.75rem;
            }

            .faq-question {
                padding: 12px 14px;
                font-size: 0.8125rem;
            }

            .faq-answer-content {
                padding: 0 14px 12px;
                font-size: 0.8125rem;
            }

            .cta-section {
                padding: 24px 14px;
            }

            .cta-section h2 {
                font-size: 1.25rem;
            }

            .cta-section h3 {
                font-size: 1rem;
            }

            .final-section {
                padding: 24px 14px;
            }

            .final-section h2 {
                font-size: 1.25rem;
            }

            .final-section p {
                font-size: 0.875rem;
                margin-bottom: 12px;
            }

            .notification-box {
                font-size: 0.75rem;
                padding: 10px 12px;
            }

            .whatsapp-float {
                bottom: 12px;
                right: 12px;
                width: 44px;
                height: 44px;
            }

            .whatsapp-float svg {
                width: 22px;
                height: 22px;
            }

            footer {
                padding: 24px 0;
            }

            footer p {
                font-size: 0.75rem;
            }
        }
        /* ─── AEO Answer Block ─── */
        .aeo-block {
            background: linear-gradient(135deg, var(--purple-50) 0%, var(--yellow-50) 100%);
            border-bottom: 1px solid var(--purple-100);
            padding: 40px 0;
        }

        .aeo-inner {
            max-width: 820px;
            margin: 0 auto;
            background: white;
            border: 1px solid var(--purple-100);
            border-radius: 14px;
            padding: 32px 40px;
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .aeo-inner::before {
            content: 'Quick Answer';
            position: absolute;
            top: -12px;
            left: 24px;
            background: var(--purple-700);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            padding: 3px 12px;
            border-radius: 20px;
        }

        .aeo-inner h2 {
            font-size: 1.25rem;
            color: var(--purple-700);
            margin-bottom: 12px;
        }

        .aeo-inner p {
            color: var(--text-medium);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 0;
        }

        .aeo-credit {
            font-size: 0.8125rem !important;
            color: var(--text-light) !important;
            margin-top: 14px !important;
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .aeo-credit::before {
            content: '✍';
            font-style: normal;
        }

        /* ─── Pros & Cons ─── */
        .pros-cons-section {
            background: var(--bg-white);
        }

        .pros-cons-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .pros-card,
        .cons-card {
            border-radius: 14px;
            padding: 32px;
            border: 1px solid var(--border-light);
        }

        .pros-card {
            background: linear-gradient(160deg, #F0FDF4 0%, #FFFFFF 100%);
            border-color: #BBF7D0;
        }

        .cons-card {
            background: linear-gradient(160deg, #FFFBEB 0%, #FFFFFF 100%);
            border-color: #FDE68A;
        }

        .pros-cons-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
        }

        .pros-icon,
        .cons-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pros-icon {
            background: #D1FAE5;
            color: #16A34A;
        }

        .cons-icon {
            background: #FEF3C7;
            color: #D97706;
        }

        .pros-icon svg,
        .cons-icon svg {
            width: 22px;
            height: 22px;
        }

        .pros-cons-header h3 {
            font-size: 1.0625rem;
            color: var(--text-dark);
            margin: 0;
        }

        .pros-cons-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .pros-cons-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .list-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 6px;
        }

        .list-dot--green { background: #16A34A; }
        .list-dot--amber { background: #D97706; }

        .pros-cons-list li div {
            flex: 1;
        }

        .pros-cons-list li strong {
            display: block;
            font-size: 0.9375rem;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .pros-cons-list li p {
            font-size: 0.875rem;
            color: var(--text-medium);
            line-height: 1.6;
            margin: 0;
        }

        /* ─── Founder Section ─── */
        .founder-section {
            background: var(--bg-soft);
        }

        .founder-inner {
            max-width: 960px;
            margin: 0 auto;
        }

        .founder-label-row {
            text-align: center;
            margin-bottom: 32px;
        }

        .founder-grid {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 40px;
            align-items: flex-start;
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }

        .founder-avatar-circle {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;           
        }

        .founder-avatar-circle svg {
            width: 44px;
            height: 44px;			
        }

		.founder-avatar-circle img {
            width: 120px;
            height: 120px;
			border-radius: 50%;
        }
        .founder-content h2 {
            font-size: 1.625rem;
            color: var(--purple-700);
            margin-bottom: 4px;
        }

        .founder-content h3 {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--text-medium);
            margin-bottom: 20px;
        }

        .founder-content p {
            color: var(--text-medium);
            font-size: 0.9375rem;
            line-height: 1.75;
            margin-bottom: 14px;
        }

        .founder-meta-row {
            display: flex;
            gap: 32px;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border-light);
            flex-wrap: wrap;
        }

        .founder-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .founder-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--purple-700);
            font-family: 'Google Sans', -apple-system, sans-serif;
        }

        .founder-stat-label {
            font-size: 0.8125rem;
            color: var(--text-light);
        }

        /* ─── Responsive: Pros/Cons + Founder ─── */
        @media (max-width: 768px) {
            .pros-cons-grid {
                grid-template-columns: 1fr;
            }

            .founder-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .founder-avatar {
                display: flex;
                justify-content: center;
            }

            .founder-content h2 {
                font-size: 1.375rem;
            }

            .founder-meta-row {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .aeo-inner {
                padding: 28px 20px;
            }

            .pros-card,
            .cons-card {
                padding: 24px 20px;
            }

            .founder-grid {
                padding: 28px 20px;
            }

            .founder-meta-row {
                gap: 16px;
            }

            .founder-stat-number {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 360px) {
            .aeo-inner {
                padding: 24px 16px;
            }

            .aeo-inner h2 {
                font-size: 1.125rem;
            }

            .aeo-inner p {
                font-size: 0.9375rem;
            }

            .pros-card,
            .cons-card {
                padding: 20px 16px;
            }

            .pros-cons-header h3 {
                font-size: 1rem;
            }

            .pros-cons-list li strong {
                font-size: 0.875rem;
            }

            .founder-grid {
                padding: 24px 16px;
            }

            .founder-content h2 {
                font-size: 1.25rem;
            }

            .founder-meta-row {
                gap: 12px;
            }
        }

        @media (max-width: 320px) {
            .aeo-inner {
                padding: 20px 14px;
            }

            .aeo-inner h2 {
                font-size: 1rem;
            }

            .pros-card,
            .cons-card {
                padding: 18px 14px;
            }

            .founder-grid {
                padding: 20px 14px;
            }

            .founder-content h2 {
                font-size: 1.125rem;
            }

            .founder-stat-number {
                font-size: 1.125rem;
            }

            .founder-meta-row {
                gap: 10px;
            }
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 16px rgba(37,211,102,0.45);
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 24px rgba(37,211,102,0.5);
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        /* Header CTA responsive */
        @media (max-width: 480px) {
            .header-cta {
                font-size: 0.75rem;
                padding: 8px 12px;
            }
			.logo img {height:38px;}
        }