    /* ==================== HERO ==================== */
    .hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 60px 24px 100px;
        position: relative;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }

    .hero-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
    }

    .hero-shape-1 {
        width: 500px;
        height: 500px;
        top: -200px;
        right: -100px;
        animation: float 8s ease-in-out infinite;
    }

    .hero-shape-2 {
        width: 300px;
        height: 300px;
        bottom: -100px;
        left: -50px;
        animation: float 6s ease-in-out infinite reverse;
    }

    .hero-shape-3 {
        width: 200px;
        height: 200px;
        top: 50%;
        left: 30%;
        animation: float 10s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-30px) rotate(5deg); }
    }

    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-text h1 {
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 800;
        color: white;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-text h1 .highlight {
        position: relative;
        display: inline-block;
    }

    .hero-text h1 .highlight::after {
        content: "";
        position: absolute;
        bottom: 5px;
        left: 0;
        right: 0;
        height: 12px;
        background: rgba(255,255,255,0.3);
        border-radius: 4px;
        z-index: -1;
    }

    .hero-text p {
        font-size: 17px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 28px;
        max-width: 500px;
    }

    .hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 32px;
    }

    .hero-feature {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        color: white;
    }

    .hero-feature svg {
        width: 20px;
        height: 20px;
        color: #34d399;
    }

    .hero-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 28px;
        background: white;
        color: var(--primary);
        border-radius: 14px;
        font-size: 16px;
        font-weight: 700;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

    .btn-primary svg {
        width: 20px;
        height: 20px;
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 28px;
        background: rgba(255,255,255,0.15);
        color: white;
        border-radius: 14px;
        font-size: 16px;
        font-weight: 700;
        border: 2px solid rgba(255,255,255,0.3);
        transition: all 0.3s;
    }

    .btn-secondary:hover {
        background: rgba(255,255,255,0.25);
        border-color: rgba(255,255,255,0.5);
    }

    /* Hero Visual - Slider */
    .hero-visual {
        position: relative;
        width: 100%;
        max-width: 420px;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 24px;
    }

    .hero-slides {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-slide {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    /* Slider Navigation Dots */
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        cursor: pointer;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    .slider-dot:hover {
        background: rgba(255,255,255,0.5);
    }

    .slider-dot.active {
        background: white;
        transform: scale(1.2);
    }

    /* Slider Arrows */
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        transition: all 0.3s;
        border: none;
    }

    .slider-arrow:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
        color: var(--primary);
    }

    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }

    /* Robot Container in Slider */
    .hero-robot-container {
        position: relative;
        width: 320px;
        height: 360px;
        margin: 0 auto;
    }

    .hero-robot {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Robot Body */
    .hero-robot-body {
        width: 160px;
        height: 180px;
        background: linear-gradient(180deg, #e0e7ff 0%, #c7d2fe 100%);
        border-radius: 80px 80px 60px 60px;
        position: relative;
        box-shadow: 0 25px 60px rgba(99, 102, 241, 0.4);
        border: 5px solid #a5b4fc;
    }

    /* Robot Chest - Heart */
    .hero-robot-chest {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #f472b6, #ec4899);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
        animation: heroHeartBeat 1.5s ease-in-out infinite;
    }

    .hero-robot-chest::before {
        content: "YZ";
        font-size: 20px;
        font-weight: 800;
        color: white;
    }

    @keyframes heroHeartBeat {
        0%, 100% { transform: translate(-50%, -50%) scale(1); }
        50% { transform: translate(-50%, -50%) scale(1.08); }
    }

    /* Robot Head */
    .hero-robot-head {
        position: absolute;
        top: -115px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 125px;
        background: linear-gradient(180deg, #e0e7ff 0%, #c7d2fe 100%);
        border-radius: 75px 75px 55px 55px;
        border: 5px solid #a5b4fc;
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
        z-index: 5;
    }

    /* Robot Ears */
    .hero-robot-head::before,
    .hero-robot-head::after {
        content: "";
        position: absolute;
        width: 24px;
        height: 36px;
        background: linear-gradient(180deg, #c7d2fe, #a5b4fc);
        border-radius: 12px;
        top: 35px;
        border: 4px solid #a5b4fc;
    }

    .hero-robot-head::before { left: -18px; }
    .hero-robot-head::after { right: -18px; }

    /* Robot Antenna */
    .hero-robot-antenna {
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 8px;
        height: 20px;
        background: #a5b4fc;
        border-radius: 4px;
    }

    .hero-robot-antenna::after {
        content: "";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 22px;
        height: 22px;
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.7);
        animation: heroAntennaBlink 2s ease-in-out infinite;
    }

    @keyframes heroAntennaBlink {
        0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.7); transform: translateX(-50%) scale(1); }
        50% { box-shadow: 0 0 35px rgba(251, 191, 36, 1); transform: translateX(-50%) scale(1.15); }
    }

    /* Robot Eyes */
    .hero-robot-eyes {
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 18px;
    }

    .hero-robot-eye {
        width: 46px;
        height: 46px;
        background: white;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        border: 4px solid #6366f1;
        box-shadow: inset 0 4px 10px rgba(0,0,0,0.1);
    }

    .hero-robot-pupil {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #1e293b, #334155);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease-out;
    }

    .hero-robot-pupil::after {
        content: "";
        width: 10px;
        height: 10px;
        background: white;
        border-radius: 50%;
        position: absolute;
        top: 3px;
        right: 3px;
    }

    /* Robot Blush */
    .hero-robot-blush {
        position: absolute;
        width: 26px;
        height: 12px;
        background: rgba(251, 113, 133, 0.5);
        border-radius: 50%;
        top: 80px;
    }

    .hero-robot-blush.left { left: 18px; }
    .hero-robot-blush.right { right: 18px; }

    /* Robot Mouth - Smile */
    .hero-robot-mouth {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 25px;
    }

    .hero-robot-mouth::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 25px;
        border: 5px solid #6366f1;
        border-color: transparent transparent #6366f1 transparent;
        border-radius: 0 0 50px 50px;
    }

    /* Robot Arms */
    .hero-robot-arms {
        position: absolute;
        top: 15px;
        width: 100%;
        z-index: 10;
    }

    .hero-robot-arm {
        position: absolute;
        width: 32px;
        height: 110px;
        background: linear-gradient(180deg, #c7d2fe 0%, #a5b4fc 100%);
        border-radius: 16px;
        transform-origin: top center;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 4px solid #a5b4fc;
    }

    .hero-robot-arm.left {
        left: -24px;
        top: 0;
        transform: rotate(-15deg);
    }

    .hero-robot-arm.right {
        right: -24px;
        top: 0;
        transform: rotate(15deg);
    }

    .hero-robot-arm.right.waving {
        animation: heroRobotWave 0.6s ease-in-out infinite alternate;
    }

    @keyframes heroRobotWave {
        from { transform: rotate(15deg); }
        to { transform: rotate(55deg); }
    }

    /* Robot Hands */
    .hero-robot-hand {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #fef3c7, #fde68a);
        border-radius: 50%;
        border: 4px solid #fbbf24;
    }

    /* Speech Bubble */
    .hero-speech-bubble {
        background: white;
        border-radius: 20px;
        padding: 20px 28px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.2);
        position: relative;
        max-width: 320px;
        text-align: center;
        margin-top: 20px;
        animation: floatBubble 3s ease-in-out infinite;
    }

    .hero-speech-bubble::before {
        content: "";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid white;
    }

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

    .hero-speech-bubble p {
        font-size: 16px;
        font-weight: 600;
        color: var(--dark);
        line-height: 1.6;
        margin: 0;
    }

    .hero-speech-bubble .highlight {
        color: var(--primary);
        font-weight: 700;
    }

    .hero-speech-bubble .robot-name {
        color: #ec4899;
        font-weight: 800;
    }

    /* Floating Elements */
    .floating-badge {
        position: absolute;
        background: white;
        border-radius: 12px;
        padding: 12px 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        gap: 10px;
        animation: floatBadge 3s ease-in-out infinite;
    }

    .floating-badge-1 {
        top: 20px;
        right: -30px;
    }

    .floating-badge-2 {
        top: 150px;
        left: -40px;
        animation-delay: -1.5s;
    }

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

    .floating-badge-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .floating-badge-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--success); }
    .floating-badge-icon.purple { background: rgba(99, 102, 241, 0.1); color: var(--primary); }

    .floating-badge-icon svg {
        width: 20px;
        height: 20px;
    }

    .floating-badge-text {
        font-size: 13px;
        font-weight: 700;
        color: var(--dark);
    }

    .floating-badge-sub {
        font-size: 11px;
        color: var(--gray-500);
    }

    /* Slide 2 - Offer Card */
    .hero-card {
        background: white;
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        width: 100%;
        max-width: 380px;
    }

    .hero-card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .hero-card-icon {
        width: 46px;
        height: 46px;
        background: linear-gradient(135deg, var(--primary), #8b5cf6);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-card-icon svg {
        width: 24px;
        height: 24px;
        color: white;
    }

    .hero-card-title {
        font-size: 17px;
        font-weight: 700;
        color: var(--dark);
    }

    .hero-card-subtitle {
        font-size: 12px;
        color: var(--gray-500);
    }

    .mini-offers {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mini-offer {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        background: var(--gray-50);
        border-radius: 12px;
        transition: all 0.3s;
    }

    .mini-offer:first-child {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
        border: 2px solid var(--success);
    }

    .mini-offer-logo {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 10px;
        color: white;
    }

    .mini-offer-info {
        flex: 1;
        min-width: 0;
    }

    .mini-offer-name {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
    }

    .mini-offer-meta {
        font-size: 11px;
        color: var(--gray-500);
    }

    .mini-offer-price {
        font-size: 17px;
        font-weight: 800;
        color: var(--dark);
    }

    .mini-offer:first-child .mini-offer-price {
        color: var(--success);
    }

    .ai-analyzing {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
        padding: 12px 14px;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
        border-radius: 10px;
    }

    .ai-icon-small {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, var(--primary), #8b5cf6);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: aiPulse 2s infinite;
    }

    @keyframes aiPulse {
        0%, 100% { box-shadow: 0 0 10px rgba(99, 102, 241, 0.3); }
        50% { box-shadow: 0 0 25px rgba(99, 102, 241, 0.6); }
    }

    .ai-icon-small svg {
        width: 18px;
        height: 18px;
        color: white;
    }

    .ai-text-small {
        font-size: 13px;
        color: var(--primary);
        font-weight: 600;
    }

    .hero-card-btn {
        display: block;
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, var(--primary), #8b5cf6);
        color: white;
        text-align: center;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        margin-top: 16px;
        transition: all 0.3s;
        text-decoration: none;
    }

    .hero-card-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    }

    /* Logo Colors */
    .logo-quick { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
    .logo-neova { background: linear-gradient(135deg, #10b981, #059669); }
    .logo-hdi { background: linear-gradient(135deg, #22c55e, #16a34a); }

    /* ==================== SERVICES ==================== */
    .services {
        padding: 80px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(99, 102, 241, 0.1);
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 16px;
    }

    .section-badge svg {
        width: 16px;
        height: 16px;
    }

    .section-title {
        font-size: clamp(26px, 4vw, 38px);
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 16px;
    }

    .section-desc {
        font-size: 16px;
        color: var(--gray-500);
        max-width: 600px;
        margin: 0 auto;
    }

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

    .service-card {
        background: white;
        border-radius: 20px;
        padding: 28px;
        border: 1px solid var(--gray-200);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), #8b5cf6);
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        border-color: var(--primary-light);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
        color: white;
    }

    .service-icon.trafik { background: linear-gradient(135deg, #f97316, #ea580c); }
    .service-icon.kasko { background: linear-gradient(135deg, #3b82f6, #2563eb); }
    .service-icon.saglik { background: linear-gradient(135deg, #10b981, #059669); }
    .service-icon.dask { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
    .service-icon.konut { background: linear-gradient(135deg, #ec4899, #db2777); }
    .service-icon.imm { background: linear-gradient(135deg, #f59e0b, #d97706); }

    .service-title {
        font-size: 19px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .service-desc {
        font-size: 14px;
        color: var(--gray-500);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .service-features {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

    .service-feature {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
        font-weight: 600;
        color: var(--gray-600);
        padding: 4px 10px;
        background: var(--gray-100);
        border-radius: 6px;
    }

    .service-feature svg {
        width: 12px;
        height: 12px;
        color: var(--success);
    }

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

    .service-link {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        color: var(--primary);
        transition: gap 0.3s;
    }

    .service-link:hover {
        gap: 12px;
    }

    .service-link svg {
        width: 18px;
        height: 18px;
    }

    .ai-tag {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 4px 10px;
        background: linear-gradient(135deg, var(--primary), #8b5cf6);
        border-radius: 6px;
        font-size: 10px;
        font-weight: 700;
        color: white;
    }

    .ai-tag svg {
        width: 12px;
        height: 12px;
    }

    /* ==================== HOW IT WORKS ==================== */
    .how-it-works {
        padding: 80px 24px;
        background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
    }

    .how-it-works-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

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

    .steps-grid::before {
        content: "";
        position: absolute;
        top: 50px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), #8b5cf6);
        opacity: 0.3;
    }

    .step-card {
        text-align: center;
        position: relative;
    }

    .step-number {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--primary), #8b5cf6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 800;
        color: white;
        margin: 0 auto 20px;
        position: relative;
        z-index: 2;
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    }

    .step-icon {
        width: 72px;
        height: 72px;
        background: white;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border: 1px solid var(--gray-200);
    }

    .step-icon svg {
        width: 32px;
        height: 32px;
        color: var(--primary);
    }

    .step-title {
        font-size: 17px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 8px;
    }

    .step-desc {
        font-size: 14px;
        color: var(--gray-500);
    }

    /* ==================== STATS ==================== */
    .stats {
        padding: 80px 24px;
        background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    }

    .stats-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .stats-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .stats-header h2 {
        font-size: clamp(26px, 4vw, 38px);
        font-weight: 800;
        color: white;
        margin-bottom: 12px;
    }

    .stats-header p {
        font-size: 16px;
        color: var(--gray-400);
    }

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

    .stat-card {
        text-align: center;
        padding: 28px;
        background: rgba(255,255,255,0.05);
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .stat-icon {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, var(--primary), #8b5cf6);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .stat-icon svg {
        width: 26px;
        height: 26px;
        color: white;
    }

    .stat-value {
        font-size: 36px;
        font-weight: 800;
        color: white;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 14px;
        color: var(--gray-400);
    }

    /* ==================== TESTIMONIALS ==================== */
    .testimonials {
        padding: 80px 24px;
    }

    .testimonials-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

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

    .testimonial-card {
        background: white;
        border-radius: 20px;
        padding: 28px;
        border: 1px solid var(--gray-200);
        transition: all 0.3s;
    }

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

    .testimonial-stars {
        display: flex;
        gap: 4px;
        margin-bottom: 16px;
    }

    .testimonial-stars svg {
        width: 18px;
        height: 18px;
        color: #fbbf24;
        fill: #fbbf24;
    }

    .testimonial-text {
        font-size: 15px;
        color: var(--gray-600);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), #8b5cf6);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        color: white;
    }

    .testimonial-name {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark);
    }

    .testimonial-role {
        font-size: 13px;
        color: var(--gray-500);
    }

    /* ==================== CTA ==================== */
    .cta-section {
        padding: 80px 24px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-bg {
        position: absolute;
        inset: 0;
    }

    .cta-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
    }

    .cta-shape-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -50px;
    }

    .cta-shape-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        right: -50px;
    }

    .cta-content {
        position: relative;
        z-index: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: clamp(26px, 4vw, 38px);
        font-weight: 800;
        color: white;
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 16px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 28px;
    }

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

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 1024px) {
        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;
        }

        .hero-text p {
            margin: 0 auto 28px;
        }

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

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

        .hero-visual {
            max-width: 420px;
            margin: 0 auto;
        }

        .slider-arrow.prev { left: 5px; }
        .slider-arrow.next { right: 5px; }

        .hero-robot-container {
            width: 280px;
            height: 320px;
        }

        .hero-robot-body {
            width: 140px;
            height: 160px;
        }

        .hero-robot-head {
            width: 130px;
            height: 110px;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            position: absolute;
        }

        .hero-robot-eye {
            width: 40px;
            height: 40px;
            position: relative;
            overflow: hidden;
        }

        .hero-robot-pupil {
            width: 20px;
            height: 20px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .hero-robot-chest {
            width: 50px;
            height: 50px;
        }

        .hero-robot-chest::before {
            font-size: 16px;
        }

        .hero-robot-arm {
            width: 28px;
            height: 95px;
        }

        .hero-robot-arm.right.waving {
            animation: heroRobotWave 0.6s ease-in-out infinite alternate;
        }

        .hero-robot-hand {
            width: 34px;
            height: 34px;
        }

        /* Robot ears - tablet */
        .hero-robot-head::before,
        .hero-robot-head::after {
            width: 20px;
            height: 30px;
            top: 30px;
        }

        .hero-robot-head::before { left: -15px; }
        .hero-robot-head::after { right: -15px; }

        /* Robot antenna - tablet */
        .hero-robot-antenna {
            width: 7px;
            height: 16px;
            top: -20px;
        }

        .hero-robot-antenna::after {
            width: 18px;
            height: 18px;
            top: -13px;
        }

        .floating-badge-1 {
            right: -10px;
        }

        .floating-badge-2 {
            left: -10px;
        }

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

        .steps-grid::before {
            display: none;
        }

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

        .testimonials-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .hero {
            padding: 40px 20px 60px;
        }

        .hero-visual {
            max-width: 320px;
            margin: 0 auto;
        }

        .hero-features {
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

        .hero-cta {
            flex-direction: column;
            align-items: stretch;
        }

        .btn-primary, .btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .floating-badge {
            display: none;
        }

        .slider-arrow {
            width: 36px;
            height: 36px;
        }

        .slider-arrow.prev { left: 8px; }
        .slider-arrow.next { right: 8px; }

        .slider-arrow svg {
            width: 16px;
            height: 16px;
        }

        .hero-robot-container {
            width: 220px;
            height: 280px;
        }

        .hero-robot-body {
            width: 110px;
            height: 130px;
        }

        .hero-robot-head {
            width: 100px;
            height: 85px;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            position: absolute;
        }

        .hero-robot-eye {
            width: 32px;
            height: 32px;
            position: relative;
        }

        .hero-robot-pupil {
            width: 16px;
            height: 16px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .hero-robot-eyes {
            gap: 12px;
            top: 22px;
            left: 50%;
            transform: translateX(-50%);
            position: absolute;
            width: auto;
        }

        .hero-robot-eye {
            position: relative;
            overflow: hidden;
        }

        .hero-robot-pupil {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            margin: 0;
        }

        .hero-robot-blush {
            width: 18px;
            height: 8px;
            top: 58px;
            position: absolute;
        }

        .hero-robot-blush.left { left: 12px; }
        .hero-robot-blush.right { right: 12px; }

        .hero-robot-mouth {
            width: 35px;
            height: 18px;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            position: absolute;
            margin: 0;
            padding: 0;
        }

        .hero-robot-mouth::before {
            width: 35px;
            height: 18px;
            border-width: 4px;
            left: 0;
            top: 0;
            position: absolute;
        }

        .hero-robot-chest {
            width: 40px;
            height: 40px;
        }

        .hero-robot-chest::before {
            font-size: 14px;
        }

        .hero-robot-arm {
            width: 22px;
            height: 75px;
        }

        .hero-robot-arm.right.waving {
            animation: heroRobotWave 0.6s ease-in-out infinite alternate;
        }

        @keyframes heroRobotWave {
            from { transform: rotate(15deg); }
            to { transform: rotate(55deg); }
        }

        .hero-robot-hand {
            width: 28px;
            height: 28px;
        }

        /* Robot ears - mobil */
        .hero-robot-head::before,
        .hero-robot-head::after {
            width: 16px;
            height: 24px;
            top: 25px;
            border-width: 3px;
        }

        .hero-robot-head::before { left: -12px; }
        .hero-robot-head::after { right: -12px; }

        /* Robot antenna - mobil */
        .hero-robot-antenna {
            width: 6px;
            height: 14px;
            top: -18px;
        }

        .hero-robot-antenna::after {
            width: 16px;
            height: 16px;
            top: -12px;
        }

        .hero-speech-bubble {
            padding: 16px 20px;
            max-width: 280px;
        }

        .hero-speech-bubble p {
            font-size: 14px;
        }

        .services {
            padding: 60px 20px;
        }

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

        .steps-grid {
            grid-template-columns: 1fr;
            max-width: 300px;
            margin: 0 auto;
        }

        .stats {
            padding: 60px 20px;
        }

        .stats-grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .stat-card {
            padding: 20px;
        }

        .stat-value {
            font-size: 28px;
        }

        .testimonials {
            padding: 60px 20px;
        }

        .cta-section {
            padding: 60px 20px;
        }

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

    @media (max-width: 480px) {
        .hero-card {
            padding: 20px;
        }

        .mini-offer {
            padding: 12px;
        }

        .mini-offer-name {
            font-size: 13px;
        }

        .mini-offer-price {
            font-size: 16px;
        }
    }
