:root {
    --ch-color:     #1565C0;
    --ch-color-dark:#0d47a1;
    --ch-color-rgb: 21, 101, 192;
}

/* HERO  */
.seo-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #e4f0fc;
}

.seo-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(21, 170, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 30%, rgba(21, 170, 255, 0.05) 0%, transparent 70%);
}

.seo-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: repeating-linear-gradient(45deg, rgba(21, 170, 255, 0.04) 0px, rgba(21, 170, 255, 0.04) 1px, transparent 1px, transparent 60px);
}

.seo-hero-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21, 170, 255, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    filter: blur(40px);
}

.seo-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.seo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(21, 170, 255, 0.12);
    border: 1px solid rgba(21, 170, 255, 0.25);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #0d6ebd;
    margin-bottom: 24px;
}

.seo-badge-dot {
    width: 8px;
    height: 8px;
    background: #0d8ecf;
    border-radius: 50%;
    animation: seoPulse 2s infinite;
}

@keyframes seoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.seo-hero-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.15;
    margin-bottom: 20px;
}

.seo-hero-desc {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.seo-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.seo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--ch-color), var(--ch-color-dark));
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(var(--ch-color-rgb), 0.3);
}

.seo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--ch-color-rgb), 0.4);
    color: #fff;
}

.seo-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #0a1628;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid rgba(10, 22, 40, 0.25);
    text-decoration: none;
    transition: all 0.3s;
}

.seo-btn-secondary:hover {
    border-color: #0d8ecf;
    color: #0d6ebd;
    background: rgba(21, 170, 255, 0.08);
}

.seo-hero-stats {
    display: flex;
    gap: 40px;
}

.seo-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.seo-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(21, 170, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0d8ecf;
    margin-bottom: 4px;
}

.seo-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0a1628;
}

.seo-stat-label {
    font-size: 13px;
    color: #5b6780;
}

/* Bubbles Visual */
.seo-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-bubbles-visual {
    width: 100%;
    max-width: 420px;
}

.seo-bubbles-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.seo-bubble-1 { animation: seoBubbleFloat1 4s ease-in-out infinite; }
.seo-bubble-2 { animation: seoBubbleFloat2 3.5s ease-in-out 0.3s infinite; }
.seo-bubble-3 { animation: seoBubbleFloat1 4.2s ease-in-out 0.6s infinite; }
.seo-bubble-4 { animation: seoBubbleFloat2 3.8s ease-in-out 0.9s infinite; }
.seo-bubble-5 { animation: seoBubbleFloat1 4.5s ease-in-out 1.2s infinite; }
.seo-bubble-7 { animation: seoBubbleFloat2 4s ease-in-out 0.5s infinite; }

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

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


/* magnify css start */

.seo-dashboard{
    position:relative;
    width:420px;
    height:420px;
    margin:auto;
    animation:floatDashboard 6s ease-in-out infinite;
}

/* ===============================
      CENTER CARD
================================= */

.seo-center{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:170px;
    height:170px;
    background:#fff;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    z-index:5;
    box-shadow:
        0 20px 50px rgba(40,90,160,.18),
        inset 0 2px 0 rgba(255,255,255,.9);
}

.seo-center::before{
    content:"";
    position:absolute;
    width:210px;
    height:210px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(50,130,255,.18),transparent 70%);
    z-index:-1;
}

.seo-center img{
    width:70px;
    margin-top:8px;
}

.seo-center h3{
    margin:0;
    font-size:18px;
    color:#202942;
    font-weight:700;
}

.seo-center h2{
    margin:6px 0 0;
    font-size:16px;
    font-weight:700;
    line-height:1.2;
}

.seo-center h2 span:nth-child(1){
    color:#0d6efd;
}

.seo-center h2 span:nth-child(3){
    color:#ff7a00;
}

.seo-center h2 span:nth-child(5){
    color:#7a3cff;
}

/* ===============================
      ORBITS
================================= */

.orbit{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    border:2px dashed rgba(13,110,253,.18);
    animation:rotateOrbit 40s linear infinite;
}

.orbit-1{
    width:240px;
    height:240px;
}

.orbit-2{
    width:320px;
    height:320px;
    animation-duration:55s;
}

.orbit-3{
    width:400px;
    height:400px;
    animation-duration:70s;
}

/* ===============================
      METRIC CARDS
================================= */

.metric{

    position:absolute;

    width:165px;

    background:#fff;

    border-radius:16px;

    padding:10px 12px;

    display:flex;

    align-items:center;

    gap:10px;

    box-shadow:
        0 15px 30px rgba(0,0,0,.08);

    transition:.35s;

    animation:floatCard 5s ease-in-out infinite;
}

.metric:hover{

    transform:translateY(-8px) scale(1.04);

    box-shadow:
        0 20px 40px rgba(13,110,253,.18);

}

.metric h4{

    margin:0;
    font-size:12px;
    color:#30384d;
    font-weight:600;

}

.metric span{

    display:block;
    margin-top:2px;
    color:#157bff;
    font-size:18px;
    font-weight:700;

}

/* ===============================
      ICONS
================================= */

.icon{

    width:38px;
    height:38px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;
    flex-shrink:0;

}

.blue{
    background:#2F80ED;
}

.orange{
    background:#FF8A00;
}

.green{
    background:#34C759;
}

.purple{
    background:#7B61FF;
}

.red{
    background:#FF5B5B;
}

.cyan{
    background:#00B8D9;
}

/* ===============================
      CARD POSITIONS
================================= */

.card1{

    top:35px;
    left:-20px;

}

.card2{

    top:35px;
    right:-20px;
    animation-delay:.5s;

}

.card3{

    top:165px;
    left:-80px;
    animation-delay:1s;

}

.card4{

    top:165px;
    right:-90px;
    animation-delay:1.5s;

}

.card5{

    bottom:20px;
    
    animation-delay:2s;

}

.card6{

    bottom:20px;
    right:0px;
    animation-delay:2.5s;

}

/* ===============================
      GLOW DOTS
================================= */

.seo-dashboard::before{

    content:"";

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:8px;
    height:8px;

    background:#2F80ED;

    border-radius:50%;

    box-shadow:
        -120px -80px #2F80ED,
        120px -80px #34C759,
        -140px 80px #FF8A00,
        140px 80px #7B61FF,
        0 -170px #00B8D9,
        0 170px #FF5B5B;

}

/* ===============================
      ANIMATIONS
================================= */

@keyframes floatDashboard{

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

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

}

@keyframes floatCard{

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

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

}

@keyframes rotateOrbit{

    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }

    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }

}

/* ===============================
      RESPONSIVE
================================= */

@media(max-width:991px){

    .seo-dashboard{

        width:340px;
        height:340px;

    }

    .orbit-1{
        width:190px;
        height:190px;
    }

    .orbit-2{
        width:260px;
        height:260px;
    }

    .orbit-3{
        width:320px;
        height:320px;
    }

    .seo-center{

        width:145px;
        height:145px;

    }

    .seo-center img{

        width:55px;

    }

    .metric{

        width:120px;
        padding:8px;

    }

    .metric h4{

        font-size:11px;

    }

    .metric span{

        font-size:16px;

    }

}

/* magnify css end  */


/* ========================= WHY SECTION ========================= */
.seo-why {
    padding: 100px 0;
    background: #fff;
}

.seo-section-header {
    margin-bottom: 60px;
}

.seo-mini-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #15aaff;
    background: rgba(21, 170, 255, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: seoFloatBadge 3s ease-in-out infinite;
}

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

.seo-section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.15;
    margin-bottom: 18px;
}

.seo-section-header p {
    font-size: 18px;
    color: #5b6780;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.seo-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.seo-cap-card {
    background: #e8f7ff;
    border: 1px solid rgba(21, 170, 255, 0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.4s ease;
}

.seo-cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.seo-cap-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.seo-cap-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
}

.seo-cap-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* ========================= FEATURES ========================= */
.seo-features {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #e8f7ff;
}

.seo-features::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(21, 170, 255, 0.15);
    border-radius: 50%;
    filter: blur(90px);
    top: -100px;
    left: -80px;
    z-index: 0;
}

.seo-features::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(21, 170, 255, 0.12);
    border-radius: 50%;
    filter: blur(90px);
    bottom: -100px;
    right: -80px;
    z-index: 0;
}

.seo-features .container {
    position: relative;
    z-index: 2;
}

.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.seo-feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 35px 28px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.seo-feature-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: -70px;
    right: -70px;
    transition: 0.5s;
    z-index: -1;
    opacity: 0.85;
}

.seo-feature-card:nth-child(1)::before { background: #15aaff; }
.seo-feature-card:nth-child(2)::before { background: #fa494a; }
.seo-feature-card:nth-child(3)::before { background: #fdc733; }
.seo-feature-card:nth-child(4)::before { background: #25D366; }
.seo-feature-card:nth-child(5)::before { background: #15aaff; }
.seo-feature-card:nth-child(6)::before { background: #fa494a; }

.seo-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.seo-feature-card:hover::before {
    transform: scale(1.5);
}

.seo-feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
    transition: 0.4s;
}

.seo-feature-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.seo-feature-card p {
    font-size: 15px;
    color: #5b6780;
    line-height: 1.7;
}


/* ========================= HOW IT WORKS ========================= */
.seo-how {
    padding: 100px 0;
    background: #fff;
}

.seo-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.seo-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.seo-step-num {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.seo-step:nth-child(1) .seo-step-num {
    background: linear-gradient(135deg, #15aaff, #0d8ecf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-step:nth-child(3) .seo-step-num {
    background: linear-gradient(135deg, #fa494a, #d93c3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-step:nth-child(5) .seo-step-num {
    background: linear-gradient(135deg, #fdc733, #e5b200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-step-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
}

.seo-step-content p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.7;
}

.seo-step-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #15aaff, #0d8ecf);
    margin-top: 32px;
    border-radius: 3px;
    flex-shrink: 0;
}


/* ========================= USE CASES ========================= */
.seo-usecases {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.seo-usecases::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(21, 170, 255, 0.12);
    border-radius: 50%;
    filter: blur(90px);
    top: 50px;
    right: -60px;
    z-index: 0;
}

.seo-usecases .container {
    position: relative;
    z-index: 2;
}

.seo-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.seo-usecase-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 35px 24px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.seo-usecase-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: -90px;
    left: -70px;
    transition: 0.5s;
    z-index: -1;
    opacity: 0.8;
}

.seo-usecase-card:nth-child(1)::before { background: #15aaff; }
.seo-usecase-card:nth-child(2)::before { background: #fa494a; }
.seo-usecase-card:nth-child(3)::before { background: #fdc733; }
.seo-usecase-card:nth-child(4)::before { background: #25D366; }

.seo-usecase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.seo-usecase-card:hover::before {
    transform: scale(1.6);
}

.seo-usecase-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.seo-usecase-card:nth-child(1) .seo-usecase-icon {
    background: rgba(21, 170, 255, 0.1);
    color: #15aaff;
}

.seo-usecase-card:nth-child(2) .seo-usecase-icon {
    background: rgba(250, 73, 74, 0.1);
    color: #fa494a;
}

.seo-usecase-card:nth-child(3) .seo-usecase-icon {
    background: rgba(253, 199, 51, 0.1);
    color: #d4a500;
}

.seo-usecase-card:nth-child(4) .seo-usecase-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.seo-usecase-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.seo-usecase-card p {
    font-size: 14px;
    color: #5b6780;
    line-height: 1.6;
}


/* ========================= CTA ========================= */
.seo-cta {
    padding: 100px 0;
    background: #fff;
}

.seo-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #122a45 100%);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.seo-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 170, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.seo-cta-content {
    position: relative;
    z-index: 1;
}

.seo-cta-content .seo-mini-badge {
    background: rgba(21, 170, 255, 0.2);
    color: #7dd3fc;
}

.seo-cta-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

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

.seo-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.seo-cta-visual {
    position: relative;
    z-index: 1;
}

.seo-cta-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.seo-cta-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.seo-dot-green {
    width: 10px;
    height: 10px;
    background: #15aaff;
    border-radius: 50%;
    animation: seoPulse 2s infinite;
}

.seo-cta-card-top span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.seo-cta-metrics {
    display: flex;
    gap: 32px;
}

.seo-cta-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seo-metric-num {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.seo-metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}


/* ========================= RESPONSIVE ========================= */
@media (max-width: 991px) {
    .seo-hero-inner {
        grid-template-columns: 1fr;
        padding: 120px 24px 60px;
    }

    .seo-hero-visual {
        display: none;
    }

    .seo-hero-content {
        text-align: center;
    }

    .seo-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .seo-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .seo-hero-actions {
        justify-content: center;
    }

    .seo-hero-stats {
        justify-content: center;
    }

    .seo-capabilities {
        grid-template-columns: 1fr;
    }

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

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

    .seo-cta-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .seo-why {
        padding: 70px 0;
    }

    .seo-features {
        padding: 70px 0;
    }

    .seo-section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .seo-hero-inner {
        padding: 100px 20px 40px;
    }

    .seo-hero-content h1 {
        font-size: 30px;
    }

    .seo-hero-desc {
        font-size: 15px;
    }

    .seo-hero-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .seo-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .seo-features-grid {
        grid-template-columns: 1fr;
    }

    .seo-usecase-grid {
        grid-template-columns: 1fr;
    }

    .seo-steps {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .seo-step-line {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .seo-step {
        padding: 0 12px;
    }

    .seo-cta-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .seo-why {
        padding: 50px 0;
    }

    .seo-features {
        padding: 50px 0;
    }

    .seo-section-header h2 {
        font-size: 26px;
    }

    .seo-section-header p {
        font-size: 15px;
    }

    .seo-cta-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .seo-feature-card {
        padding: 24px;
    }

    .seo-usecase-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .seo-hero-inner {
        padding: 90px 16px 32px;
    }

    .seo-hero-content h1 {
        font-size: 26px;
    }

    .seo-hero-desc {
        font-size: 14px;
    }

    .seo-hero-stats {
        gap: 12px;
    }

    .seo-stat-num {
        font-size: 20px;
    }

    .seo-stat-label {
        font-size: 11px;
    }

    .seo-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .seo-why {
        padding: 40px 0;
    }

    .seo-features {
        padding: 40px 0;
    }

    .seo-section-header h2 {
        font-size: 22px;
    }

    .seo-section-header p {
        font-size: 14px;
    }

    .seo-step-num {
        font-size: 36px;
    }

    .seo-cta-wrapper {
        padding: 24px 16px;
    }

    .seo-capabilities {
        gap: 16px;
    }

    .seo-features-grid {
        gap: 16px;
    }

    .seo-usecase-grid {
        gap: 16px;
    }
}
