@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bogle&family=Cal+Sans&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            color: #0f172a;
            overflow-x: hidden;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 18px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0px;
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

         .logo img{
            width: 70px;
         }

        nav {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #475569;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #0f172a;
        }

        .book-demo-btn {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .book-demo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(15, 23, 42, 0.4);
            color: #eceaea;;
        }

        .hero-section {
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 45px 80px;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
        }

        .highlight{color: linear-gradient(135deg, #ff5722 0%, #f4511e 100%)} 

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1100px;
            position: relative;
            z-index: 1;
        }

  .attention-badge {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  text-transform: capitalize;
  z-index: 0;
  overflow: hidden;
}

/* Animated gradient border */
.attention-badge::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(270deg, #93c5fd, #60a5fa, #3b82f6, #60a5fa, #93c5fd);
  background-size: 400% 400%;
  border-radius: 50px;
  z-index: -1;
  animation: moveBorder 6s linear infinite;
}

@keyframes moveBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Mask to keep inside clean */
.attention-badge::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50px;
  z-index: -1;
}


        .hero-title {
            font-size: 82px;
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
        }

        .hero-subtitle {
            font-size: 28px;
            line-height: 1.5;
            color: #475569;
            margin-bottom: 50px;
            font-weight: 500;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            align-items: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff5722 0%, #f4511e 100%);
            color: white;
            padding: 20px 48px;
            border-radius: 35px;
            text-decoration: none;
            font-size: 19px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(255, 87, 34, 0.35);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 87, 34, 0.45);
        }

        .btn-secondary {
            background: linear-gradient(135deg, #64748b 0%, #475569 100%);
            color: white;
            padding: 20px 48px;
            border-radius: 35px;
            text-decoration: none;
            font-size: 19px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(100, 116, 139, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(100, 116, 139, 0.4);
        }

        .vsl-section {
            padding: 80px 80px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
        }

        .vsl-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .vsl-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .vsl-title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 60px;
            letter-spacing: -1px;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            background: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 20px;
        }

        @media (max-width: 768px) {
            .vsl-section {
                padding: 80px 30px;
            }

            .vsl-title {
                font-size: 36px;
                margin-bottom: 40px;
            }
        }
        .mockup-section {
            padding: 120px 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .mockup-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 80px;
        }

        .mockup-content {
            flex: 1;
        }

        .mockup-title {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .mockup-description {
            font-size: 20px;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 40px;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 18px;
            color: #334155;
        }

        .feature-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

        .mockup-visual {
            flex: 1;
        }

        .inbox-mockup {
            background: white;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .inbox-tabs {
            display: flex;
            gap: 40px;
            margin-bottom: 28px;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 20px;
        }

        .tab {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .tab:hover {
            background: #f8fafc;
        }

        .tab.primary {
            color: #dc2626;
        }

        .tab.promotions {
            color: #475569;
        }

        .tab.active {
            opacity: 1;
        }

        .tab:not(.active) {
            opacity: 0.4;
        }

        .badge {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-dark {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tab-subtitle {
            font-size: 12px;
            color: #94a3b8;
            margin-top: 2px;
        }

        .email-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .email-list.active {
            opacity: 1;
        }

        .email-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px;
            border-radius: 10px;
            transition: background-color 0.2s, transform 0.2s;
            border: 1px solid transparent;
            position: relative;
        }

        .email-item:hover {
            background-color: #f8fafc;
            transform: translateX(4px);
            border-color: #e2e8f0;
        }

        .checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid #cbd5e1;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .star, .arrow {
            width: 20px;
            height: 20px;
            color: #cbd5e1;
            flex-shrink: 0;
        }

        .sender {
            font-weight: 700;
            color: #0f172a;
            min-width: 140px;
            flex-shrink: 0;
        }

        .subject {
            flex: 1;
            color: #475569;
            font-size: 15px;
        }

        .icon-user {
            width: 26px;
            height: 26px;
            color: #dc2626;
        }

        .icon-tag {
            width: 26px;
            height: 26px;
            color: #475569;
        }

        .client-email {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid #fbbf24 !important;
        }

        .client-email::after {
            content: "👈 Your Email";
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: #fbbf24;
            color: #78350f;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
        }

        @media (max-width: 1200px) {
            .mockup-container {
                flex-direction: column;
            }

            .mockup-title {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .mockup-section {
                padding: 80px 30px;
            }

            .mockup-title {
                font-size: 36px;
            }

            .mockup-description {
                font-size: 18px;
            }

            .feature-item {
                font-size: 16px;
            }

            .inbox-mockup {
                padding: 20px;
            }

            .inbox-tabs {
                gap: 20px;
                flex-direction: column;
            }

            .sender {
                min-width: 100px;
                font-size: 14px;
            }

            .subject {
                font-size: 13px;
            }

            .client-email::after {
                position: static;
                display: block;
                margin-top: 8px;
                font-size: 11px;
                padding: 4px 8px;
                width: fit-content;
                transform: none;
            }
        }


        .results-section {
            padding: 140px 80px;
            background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
            position: relative;
            overflow: hidden;
        }

        .results-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .results-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .results-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .results-title {
            font-size: 64px;
            font-weight: 900;
            color: #0a0a0a;
            margin-bottom: 24px;
            letter-spacing: -2px;
            line-height: 1.1;
            background: linear-gradient(135deg, #0a0a0a 0%, #2d2d2d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .results-subtitle {
            font-size: 26px;
            color: #4a4a4a;
            margin-bottom: 50px;
            font-weight: 500;
            letter-spacing: -0.5px;
        }

        .benefits-list {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 80px;
            flex-wrap: wrap;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            transition: transform 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-2px);
        }

        .benefit-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #ff5722 0%, #f4511e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
        }

        .benefit-icon::after {
            content: '✓';
            color: white;
            font-size: 18px;
            font-weight: bold;
        }

        .carousel-wrapper {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }

        .carousel-container {
            overflow: hidden;
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.1);
            background: #fff;
            position: relative;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
            background: #fff;
        }

        .slide-content {
            position: relative;
            padding: 40px;
        }

        .slide-image {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .stats-overlay {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 80px);
            background: linear-gradient(135deg, #ff5722 0%, #f4511e 100%);
            border-radius: 20px 20px 0 0;
            padding: 32px 50px;
            display: flex;
            justify-content: center;
            gap: 100px;
            box-shadow: 0 -10px 40px rgba(255, 87, 34, 0.3);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .stat-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .stat-icon svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .stat-content {
            text-align: left;
        }

        .stat-value {
            font-size: 32px;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -0.5px;
        }

        .stat-label {
            font-size: 16px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            text-transform: capitalize;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 50px;
        }

        .carousel-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: #555;
            font-size: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .carousel-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .carousel-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .carousel-btn:hover::before {
            opacity: 1;
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        .carousel-btn span {
            position: relative;
            z-index: 1;
        }

        .carousel-btn.prev span::before {
            content: '‹';
        }

        .carousel-btn.next span::before {
            content: '›';
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d0d0d0;
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator.active {
            width: 32px;
            border-radius: 5px;
            background: linear-gradient(135deg, #ff5722 0%, #f4511e 100%);
        }

        @media (max-width: 1024px) {
            .stats-overlay {
                gap: 50px;
                padding: 28px 40px;
            }

            .stat-value {
                font-size: 28px;
            }

            .stat-label {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .results-section {
                padding: 80px 30px;
            }

            .results-title {
                font-size: 38px;
                letter-spacing: -1px;
            }

            .results-subtitle {
                font-size: 20px;
            }

            .benefits-list {
                gap: 30px;
                flex-direction: column;
                align-items: center;
            }

            .benefit-item {
                font-size: 18px;
            }

            .carousel-btn {
                width: 46px;
                height: 46px;
                font-size: 20px;
            }

            .slide-content {
                padding: 20px;
            }

            .stats-overlay {
                flex-direction: column;
                gap: 24px;
                padding: 24px;
                align-items: center;
            }

            .stat-item {
                gap: 16px;
            }

            .stat-icon {
                width: 48px;
                height: 48px;
            }

            .stat-icon svg {
                width: 24px;
                height: 24px;
            }

            .stat-value {
                font-size: 26px;
            }

            .stat-content {
                text-align: center;
            }
        }


        .comparison-section {
            padding: 100px 80px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .comparison-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 1;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
        }

        .section-title {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1.5px;
        }

        .section-subtitle {
            font-size: 20px;
            color: #475569;
            font-weight: 500;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .comparison-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .comparison-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 50px 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease;
        }

        .comparison-card.old-way {
            border: 2px solid rgba(239, 68, 68, 0.2);
        }

        .comparison-card.new-way {
            border: 2px solid rgba(34, 197, 94, 0.3);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(236, 253, 245, 0.6) 100%);
        }

        .comparison-card.new-way::before {
            content: '✨';
            position: absolute;
            top: -15px;
            right: 30px;
            font-size: 32px;
        }

        .card-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid rgba(0, 0, 0, 0.05);
        }

        .card-label {
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            opacity: 0.7;
        }

        .old-way .card-label {
            color: #ef4444;
        }

        .new-way .card-label {
            color: #22c55e;
        }

        .card-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .old-way .card-title {
            color: #475569;
        }

        .new-way .card-title {
            background: linear-gradient(135deg, #0f172a 0%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .problem-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .problem-item, .solution-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            margin-bottom: 16px;
            border-radius: 16px;
            transition: transform 0.2s ease;
        }

        .old-way .problem-item {
            background: linear-gradient(135deg, rgba(254, 226, 226, 0.5) 0%, rgba(254, 202, 202, 0.3) 100%);
        }

        .old-way .problem-item:hover {
            transform: translateX(5px);
        }

        .new-way .solution-item {
            background: linear-gradient(135deg, rgba(236, 253, 245, 0.8) 0%, rgba(209, 250, 229, 0.5) 100%);
        }

        .new-way .solution-item:hover {
            transform: translateX(-5px);
        }

        .icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .old-way .icon {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }

        .new-way .icon {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        }

        .item-content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
            color: #0f172a;
        }

        .item-content p {
            font-size: 15px;
            color: #64748b;
            font-weight: 500;
            line-height: 1.5;
        }

        .result-box {
            background: rgba(0, 0, 0, 0.03);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
        }

        .old-way .result-box {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
        }

        .new-way .result-box {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.08) 100%);
        }

        .result-box .arrow {
            font-size: 28px;
            margin-bottom: 12px;
            display: block;
        }

        .result-box h4 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .old-way .result-box h4 {
            color: #ef4444;
        }

        .new-way .result-box h4 {
            color: #22c55e;
        }

        .result-box p {
            font-size: 15px;
            color: #64748b;
            font-weight: 500;
        }

        .cta-section {
            text-align: center;
            margin-top: 80px;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: #0f172a;
            letter-spacing: -1px;
        }

        .cta-subtitle {
            font-size: 18px;
            color: #475569;
            margin-bottom: 35px;
            font-weight: 500;
        }

        .benefits-list {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }

        .benefit {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 600;
            color: #0f172a;
        }

        .benefit .check {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        .btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, #ff5722 0%, #f4511e 100%);
            color: white;
            padding: 20px 48px;
            border-radius: 35px;
            text-decoration: none;
            font-size: 19px;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(255, 87, 34, 0.35);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(255, 87, 34, 0.45);
        }

        @media (max-width: 1024px) {
            .section-title {
                font-size: 42px;
            }

            .comparison-section {
                padding: 60px 40px;
            }

            .comparison-card {
                padding: 35px 25px;
            }

            .card-title {
                font-size: 24px;
            }

            .item-content h3 {
                font-size: 16px;
            }

            .item-content p {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .comparison-section {
                padding: 40px 20px;
            }

            .comparison-container {
                gap: 20px;
            }

            .section-title {
                font-size: 32px;
            }

            .card-title {
                font-size: 20px;
            }

            .cta-title {
                font-size: 32px;
            }

            .benefits-list {
                flex-direction: column;
                gap: 15px;
            }
        }
 