 /* ========== GLOBAL STYLES ========== */
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-container {
            max-width: 2000px;
            margin-left: 10%;
            padding: 0 20px;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            background: url('/i/hero_page.PNG');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 60px 0 60px;
            position: relative;
            overflow: hidden;
            min-height: 60vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: flex;
            align-items: flex-start;
            max-width: 1400px;
            margin-top: -100px;
        }

        .hero-text p {
            font-size: 35px;
            margin-top: 45px;
            margin-bottom: 45px;
            margin-left: -120px;
            color: white;
            max-width: 800px;
        }

        .cta-button {
            margin-top: 2vh;
            margin-left: -5vw;
            background: #00a8e8;
            color: white;
            padding-top: 2vh;
            padding-bottom: 2vh;
            padding-left: 5vw;
            padding-right: 5vw;
            border: 2px solid white;
            border-radius: 8px;
            font-size: 2vw;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            border-radius: 20px;
            
        }
        
        .hero-text h1 {
            font-size: 70px;
            line-height: 1;
            max-width: 1100px;
            margin-top: 150px;
            margin-left: -130px;
            margin-bottom: 60px;
            font-weight: 400;
        }
        
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 168, 232, 0.4);
            animation: pulse 1s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 5px 20px rgba(0, 168, 232, 0.4); }
            50% { box-shadow: 0 5px 30px rgba(0, 168, 232, 0.6); }
            100% { box-shadow: 0 5px 20px rgba(0, 168, 232, 0.4); }
        }
        
        
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 75px;
            font-size: 14px;
            margin-left: -120px;
        }

        .trust-badge .rating-number {
            font-size: 48px;
            font-weight: bold;
            color:whited;
        }

        .trust-badge .stars {
            color: #ffd700;
            font-size: 16px;
            letter-spacing: 2px;
        }

        .trust-badge .review-count {
            color: white;
            font-size: 25px;
        }
        
        /* ========== PAIN POINTS SECTION ========== */
        .pain-points {
            padding: 80px 0;
            background: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 36px;
            color: #00a8e8;
            margin-bottom: 10px;
        }
        
        .section-header p {
            color: #666;
            font-size: 30px;
        }
        
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .pain-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 20px;
            border-radius: 10px;
            object-fit: scale-down;
            display: block;
        }

        .pain-icon-a {
            background: url("/i/a.png");
        }

        .pain-icon-b {
            background: url("/i/b.png");
        }

        .pain-icon-c {
            background: url("/i/c.png");
        }

        .pain-icon-d {
            background: url("/i/d.png");
        }
        
        .pain-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }
        
        .pain-card p {
            font-size: 14px;
            color: #666;
        }
        
        /* ========== SOLUTION SECTION ========== */
        .solution {
            padding: 80px 0;
            margin-bottom: -85px;
            background: #1a1a1a;
            color: white;
        }
        
        .solution-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .solution-describe {
            font-size: 25px;
            text-align: center;
            margin-bottom: 50px;
        }
        .solution-end {
            text-align: center;
            margin-top: 50px;
            margin-bottom: 50px;
        }
        
        .solution-header h2 {
            font-weight: 350px;
            color: #00a8e8;
            font-size: 45px;
            margin-bottom: 20px;
        }
        
        .solution-header p {
            font-size: 18px;
            color: white;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .process-step {
            padding: 30px;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            transition: background 0.3s;
        }
        
        .process-step:hover {

            background: rgba(255,255,255,0.1);
        }
        
        .step-emoji {
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        .process-step h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .process-step p {
            font-size: 18px;
            color: white;
        }

        .grey-line {
            border: 0;
            border-top: none;
            border-bottom: none;
            height: 5px;
            background: #666;
            margin: 100px auto;
            max-width: 1000px;

        }
        /* ========== OVERWHELMED SECTION ========== */
        .overwhelmed-section {
            padding: 100px 0;
            background: #1a1a1a;
            color: white;
        }
        
        .overwhelmed-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 60px;
        }
        .overwhelmed-left {
            min-width: 800px;
        }
        .overwhelmed-left h2 {
            font-size: 50px;
            margin-bottom: 30px;
            line-height: 1;
        }
        
        .overwhelmed-left p {
            font-size: 16px;
            color: #aaa;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .samples-showcase {
            max-width: 300px;
            min-height: 600px;
            margin-left: 100px;
            margin-top: 100px;
            background: transparent;
            border: 5px solid #00a8e8;
            border-radius: 20px;
            padding: 20px;
            position: flex;
            overflow: visible;
        }

        .samples-showcase h3 {
            font-size: 18px;
            margin-bottom: 40px;
            color: white;
            text-align: center;
        }

        .sample-cards {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 300px;
            overflow: visible;
        }

        .sample-card {
            width: 250px;
            height: 150px;
            position: absolute;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            display: none;
            opacity: 0;
            transform: translateY(-20px) scale(1.1);
            transition: all 0.5s ease;
            z-index: 10;
        }

        .sample-card.active {
            display: flex;
            opacity: 1;
            transform: translateY(-20px) scale(1.1);
        }

        .sample-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .carousel-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding: 0 10px;
        }

        .nav-arrow {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-arrow:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: white;
            transform: scale(1.3);
        }
                
        .video-container {
            grid-column: span 2;
            text-align: center;
            align-items: left;
            margin-left: -190px;
        }
        
        .video-placeholder {
            width: 100%;
            max-width: 600px;
            height: 350px;
            background: #222;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            position: relative;
            cursor: pointer;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(0, 168, 232, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
			font-size: 30px;
			margin-left: 5px;
        }
        
        .play-button:hover {
            transform: scale(1.1);
        }
        
        .video-caption {
            margin-top: 20px;
            color: #888;
            font-size: 14px;
        }

        .sample-picture {
            position: relative;
            margin-left: -170px;
            top: -150px;
            min-width: 600px;
            min-height: 600px;
        }
        .sample-picture2 {
            position: relative;
            left: -450px;
            top: -380px;
            min-width: 1100px;
            min-height: 1100px;
        }
        .sample-picture3 {
            position: relative;
            left: -350px;
            top: -290px;
            min-width: 900px;
            min-height: 900px;
        }
        
        /* ========== READY TO GET STARTED SECTION ========== */
        /* ========== READY ========== */
        /* Wrapper: 2 columns */
        .ready-wrapper {
        background: #1a1a1a;
        display: flex;
        align-items: stretch;
        min-height: 1000px;
        }

        /* Left: image fills column */
        .ready-image {
        flex: 1 1 50%;
        background: url('/i/ready.png') center/cover no-repeat;

        /* Fade on right edge */
        -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-image: linear-gradient(to right, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
        }

        /* Right: content flush to the right */
        .ready-container {
        flex: 1 1 50%;
        display: flex;
        justify-content: flex-end;  /* push content to right edge */
        align-items: center;
        margin-right: 10%;
        padding: 60px;
        }

        .ready-content {
        max-width: 600px;
        text-align: left;
        }

        .ready-text h2 {
        font-size: 50px;
        margin-bottom: 24px;
        line-height: 1.1;
        }

        .ready-text p {
        font-size: 30px;
        color: #ddd;
        margin-bottom: 30px;
        line-height: 1.6;
        }

        /* 1) Set a shared left gutter just for this text block */
        .ready-text{
        --hang: 25px;           /* width reserved for icons */
        text-align: left;       /* ensure no center alignment sneaks in */
        }

        /* 2) Neutral list indentation */
        .ready-list{
        row-gap: 10px;
        font-size: 30px;
        margin: 0 0 40px 0;
        padding: 0;
        list-style: none;
        }

        /* 3) Make icons hang into the gutter so list TEXT aligns with heading & button */
        .ready-list .icon{
        display: inline-block;
        text-align: center;                 /* optional: center the emoji */
        transform: translateY(1px);         /* optical tweak */
        }


        /* Button aligns with text start */
        .ready-cta-button {
        background: #00a8e8;
        color: #fff;
        margin-top: 20px;
        padding: 18px 44px;
        border: 2px solid #fff;
        border-radius: 8px;
        font-size: 40px;
        font-weight: 700;
        cursor: pointer;
        transition: all .2s ease;
        display: inline-block;
        }
        .ready-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,168,232,.35);
        }

        /* Responsive: stack on mobile */
        @media(max-width: 900px) {
        .ready-wrapper {
            flex-direction: column;
        }
        .ready-image {
            min-height: 300px;
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
        }
        .ready-container {
            justify-content: center;
            padding: 30px 20px;
        }
        }



        
        /* ========== PORTFOLIO SECTION ========== */
        .portfolio {
            padding: 5px 0;
            background: #1a1a1a;
        }
        
        .portfolio-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .portfolio-header h2 {
            font-weight: 100px;
            color: white;
            font-size: 45px;
            margin-bottom: 20px;
        }
        
        .portfolio-header p {
            color: white;
            font-size: 21px;
        }
        
        .transformation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        
        .transformation-item {
            text-align: center;
        }
        
        .transformation-item h3 {
            font-weight: bold;
            font-size: 25px;
            margin-bottom: 20px;
            color: white;
        }
        
        /* Replace with actual portfolio images */
        .portfolio-image {
            filter: none !important;
            width: 100%;
            height: 400px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        
        /* ========== TESTIMONIALS SECTION ========== */
        .testimonials {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .testimonials-header {
            text-align: left;
            margin-bottom: 50px;
        }
        
        .testimonials-header h2 {
            font-size: 36px;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #1a1a1a;
        }
        
        .stars {
            color: #ffd700;
            margin-bottom: 15px;
        }
        .result-picture {
            height: 250px;
            width: 350px;
        }

        
        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .pain-grid,
            .process-steps,
            .transformation-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-text h1 {
                font-size: 32px;
            }
            
            .overwhelmed-content,
            .ready-content {
                grid-template-columns: 1fr;
            }
        }

        /* ---------- MOBILE FIXES ---------- */
        @media (max-width: 768px) {
        .container { padding: 0 16px; }

        /* HERO */
        .hero {
            background-image: url('/test/i/hero_page.PNG'); /* was /i/... */
            min-height: 60vh;
            padding: 80px 0 40px;
        }
        .hero-content {
            grid-template-columns: 1fr;
            margin: 0 auto;              /* remove negative margins */
            max-width: 100%;
        }
        .hero-text { text-align: center; }
        .hero-text h1 {
            font-size: 28px;
            margin: 24px 0 20px;
            max-width: none;
        }
        .hero-text p {
            font-size: 16px;
            margin: 12px 0 20px;
            max-width: none;
        }
        .cta-button { margin: 0 auto; padding: 14px 24px; font-size: 18px; }

        /* PAIN GRID */
        .pain-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
        @media (max-width: 480px) {
            .pain-grid { grid-template-columns: 1fr; }
        }
        .pain-icon { width: 120px; height: 120px; }

        /* SOLUTION */
        .solution { padding: 48px 0; }
        .solution-header h2 { font-size: 28px; }
        .solution-describe { font-size: 18px; margin: 12px 0 28px; }
        .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
        @media (max-width: 480px) {
            .process-steps { grid-template-columns: 1fr; }
        }

        /* OVERWHELMED */
        .overwhelmed-content { grid-template-columns: 1fr; gap: 24px; }
        .overwhelmed-left { min-width: 0; }           /* remove forcing wide layout */
        /* kill the huge offsets/sizes on sample images */
        .sample-picture,
        .sample-picture2,
        .sample-picture3 {
            position: static;
            min-width: 0;
            min-height: 0;
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* READY SECTION */
        .ready-section { min-height: auto; padding: 48px 0; }
        .ready-content { flex-direction: column; align-items: stretch; }
        .ready-image { position: static; width: 100%; height: auto; left: 0; top: 0; }
        .ready-right { padding-left: 0; max-width: 100%; }

        /* PORTFOLIO */
        .transformation-grid { grid-template-columns: 1fr; gap: 20px; }
        .portfolio-image { height: auto; }

        /* TESTIMONIALS */
        .testimonials { padding: 48px 0; }
        .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
        .result-picture { width: 100%; height: auto; }
        }
