.seo-hero {
    position: relative;
    min-height: 100vh;
    padding: 40px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    margin-bottom: 20px;
    /* YOUR IMAGE */
    background: url('../images/1.jpg') center/cover no-repeat;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* CONTENT */
.seo-hero-content {
    position: relative;
    max-width: 1200px;
    z-index: 2;
}

/* TAG */
.tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #9ca3af;
    margin-bottom: 20px;
}

/* SUBTITLE */
.subtitle {
    font-size: 26px;
    font-weight: 600;
    color: #ff6a00;
    margin-bottom: 15px;
}

/* HEADING */
.seo-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.seo-hero h1 span {
    display: block;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 22px;
    color: #ddd;
    flex-wrap: wrap;
}

/* DOT BETWEEN TEXT */
.features span {
    position: relative;
    padding: 0 10px;
}

.features span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -10px;
    top:-10px;
    color: white;
    font-size: 40px;
}
/* SECTION */
.usp2 {
    position: relative;
    background: #0b0b0b;
    color: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}

/* CONTAINER */
.usp2-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* INTRO */
.usp2-intro {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* TITLE */
.usp2-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* GRID */
.usp2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.usp2-card {
    background: #111;
    padding: 30px;
    border-radius: 6px;
    transition: 0.3s;
}

/* HOVER */
.usp2-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
}

/* TITLE */
.usp2-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* NUMBER */
.usp2-card h3 span {
    color: #ff6a00;
    font-size: 28px;
    font-weight: 900;
    margin-right: 10px;
}

/* LIST */
.usp2-card ul {
    list-style: none;
    padding: 0;
}

/* LIST ITEM */
.usp2-card li {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.85;
    padding-left: 18px;
    position: relative;
}

/* DOT BULLET */
.usp2-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6a00;
}
.method2 {

    position: relative;

    padding: 80px 20px;

    color: #ffffff;

    background: #0b0b0b;
}
/* CONTAINER */
.method2-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HEADER */
.method2-header {
    position: relative;
    margin-bottom: 80px;
}

.method2-header h2 {
    font-size: 40px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

/* GRID */
.method2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    text-align: center;
}

/* ITEM */
.method2-item {
    max-width: 350px;
    margin: auto;
}

/* BIG NUMBER */
.method2-item .num {
    font-size: 90px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #ff6a00;
    margin-bottom: 10px;
}

/* TITLE */
.method2-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TEXT */
.method2-item p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}
.benefits2 {
    padding: 40px 20px;
    background: #0b0b0b;
    color: #ffffff;
}

.benefits2-container {
    max-width: 1200px;
    margin: auto;
}

.benefits2-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* LIST */
.benefits2-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ITEM */
.benefits2-item {
    position: relative;
    padding: 30px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;

    background: var(--bg) center/cover no-repeat;
}

/* DARK OVERLAY */
.benefits2-item::before {
    content: "";
    position: absolute;
    inset: 0;
}

/* TEXT */
.benefits2-item p {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
}

.benefits2-item strong {
    font-weight: 800;
}

/* ICON BASE */
.icon {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 2;
}

/* INNER DOT */
.icon::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff6a00;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CONNECTOR LINE */
.icon::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ff6a00;
    top: 50%;
}

/* LEFT */
.icon.left {
    left: 30px;
}

.icon.left::before {
    right: -20px;
}

/* RIGHT */
.icon.right {
    right: 30px;
}

.icon.right::before {
    left: -20px;
}
.faq2 {
    background: #0b0b0b;
    color: #ffffff;
    padding: 90px 20px;
}

.faq2-container {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

/* HEADER */
.faq2-header {
    position: relative;
    margin-bottom: 50px;
}

.faq2-header h2 {
    font-size: 36px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.faq2-bg {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 90px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
}

/* LIST */
.faq2-list {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ITEM */
.faq2-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    cursor: pointer;
}

.faq2-question {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

/* JUST A TEXT + */
.plus {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    transition: 0.3s;
}

/* + ICON */
.faq2-question .icon {
    font-size: 22px;
    color: #ffffff;
    transition: 0.3s;
}

/* ANSWER */
.faq2-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.4s ease;
    font-size: 14px;
    margin-left: 34px;
    margin-top: 10px;
    line-height: 1.6;
}
.faq-plus {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}
/* ACTIVE */
.faq2-item.active .faq2-answer {
    max-height: 200px;
    opacity: 1;
}

/* CTA */
.faq2-cta {
    text-align: center;
    margin-top: 80px;
}

.faq2-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* BUTTON */
.faq2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid #ff6a00;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.faq2-btn:hover {
    background: #ff6a00;
    color: #0b0b0b;
}
@media (max-width: 1024px) {

    /* GLOBAL CONTAINER CONTROL */
    .seo-hero-content,
    .usp2-container,
    .method2-container,
    .benefits2-container,
    .faq2-container {
        max-width: 95%;
    }

    /* HERO */
    .seo-hero {
        min-height: 90vh;
        padding: 30px 6%;
    }

    .seo-hero h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 22px;
    }

    .features {
        font-size: 18px;
        gap: 15px;
    }

    /* USP */
    .usp2 {
        padding: 20px 15px;
    }

    .usp2-title {
        font-size: 30px;
    }

    .usp2-card {
        padding: 25px;
    }

    .usp2-card h3 {
        font-size: 18px;
    }

    .usp2-card li {
        font-size: 13px;
    }

    /* METHOD */
    .method2 {
        padding: 60px 15px;
    }

    .method2-header h2 {
        font-size: 32px;
    }

    .method2-grid {
        gap: 40px 25px;
    }

    .method2-item .num {
        font-size: 70px;
    }

    .method2-item h3 {
        font-size: 20px;
    }

    .method2-item p {
        font-size: 14px;
    }

    /* BENEFITS */
    .benefits2 {
        padding: 60px 15px;
    }

    .benefits2-title {
        font-size: 30px;
    }

    .benefits2-item {
        padding: 25px 70px;
    }

    .benefits2-item p {
        font-size: 20px;
    }

    /* FIX ICON OVERFLOW */
    .icon.left {
        left: 20px;
    }

    .icon.right {
        right: 20px;
    }

    /* FAQ */
    .faq2 {
        padding: 60px 15px;
    }

    .faq2-header h2 {
        font-size: 30px;
    }

    .faq2-bg {
        font-size: 70px;
    }

    .faq2-question {
        font-size: 16px;
    }

    .faq2-answer {
        font-size: 13px;
    }

    .faq2-cta h3 {
        font-size: 24px;
    }

    .faq2-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {

    /* GLOBAL */
    .seo-hero-content,
    .usp2-container,
    .method2-container,
    .benefits2-container,
    .faq2-container {
        max-width: 95%;
    }

    /* HERO */
    .seo-hero {
        min-height: 80vh;
        padding: 30px 15px;
    }

    .seo-hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 20px;
    }

    .features {
        font-size: 16px;
        gap: 12px;
    }

    /* USP → 2/2 GRID */
    .usp2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .usp2-card {
        padding: 20px;
    }

    .usp2-card h3 {
        font-size: 17px;
    }

    .usp2-card li {
        font-size: 13px;
    }

    /* METHOD → 2/2 GRID */
    .method2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .method2-item .num {
        font-size: 60px;
    }

    .method2-item h3 {
        font-size: 18px;
    }

    .method2-item p {
        font-size: 13px;
    }

    /* BENEFITS → STACK (better readability) */
    .benefits2-item {
        padding: 22px 60px;
    }

    .benefits2-item p {
        font-size: 18px;
    }

    /* ICON ALIGNMENT */
    .icon.left {
        left: 15px;
    }

    .icon.right {
        right: 15px;
    }

    /* FAQ → STACK NATURALLY */
    .faq2-question {
        font-size: 15px;
        gap: 10px;
    }

    .faq2-answer {
        font-size: 13px;
        margin-left: 28px;
    }

    .faq2-header h2 {
        font-size: 26px;
    }

    .faq2-bg {
        font-size: 55px;
    }

    .faq2-cta h3 {
        font-size: 20px;
    }

    .faq2-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {

    /* GLOBAL */
    .seo-hero-content,
    .usp2-container,
    .method2-container,
    .benefits2-container,
    .faq2-container {
        max-width: 92%;
    }

    section {
        padding: 50px 10px !important;
    }

    h2 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    /* HERO */
    .seo-hero {
        min-height: 75vh;
        padding: 20px 10px;
    }

    .seo-hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 16px;
    }

    .tag {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .features {
        font-size: 14px;
        gap: 10px;
    }

    .features span:not(:last-child)::after {
        font-size: 24px;
        top: -6px;
    }

    /* USP → STACK */
    .usp2-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .usp2-card {
        padding: 18px;
    }

    .usp2-card h3 {
        font-size: 16px;
    }

    .usp2-card li {
        font-size: 13px;
    }

    /* METHOD → STACK */
    .method2-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .method2-item .num {
        font-size: 50px;
    }

    .method2-item h3 {
        font-size: 16px;
    }

    .method2-item p {
        font-size: 13px;
    }

    /* BENEFITS → STACK (OPTIMIZED) */
    .benefits2-title {
        font-size: 22px;
    }

    .benefits2-item {
        padding: 20px 50px;
    }

    .benefits2-item p {
        font-size: 16px;
        line-height: 1.4;
    }

    /* ICON FIX */
    .icon {
        width: 22px;
        height: 22px;
    }

    .icon::after {
        width: 8px;
        height: 8px;
    }

    .icon.left {
        left: 10px;
    }

    .icon.right {
        right: 10px;
    }

    /* FAQ */
    .faq2 {
        padding: 50px 10px;
    }

    .faq2-header h2 {
        font-size: 22px;
    }

    .faq2-bg {
        font-size: 45px;
    }

    .faq2-question {
        font-size: 14px;
        gap: 8px;
    }

    .faq-plus {
        font-size: 18px;
    }

    .faq2-answer {
        font-size: 13px;
        margin-left: 22px;
    }

    /* CTA */
    .faq2-cta {
        margin-top: 50px;
    }

    .faq2-cta h3 {
        font-size: 18px;
        line-height: 1.3;
    }

    .faq2-btn {
        padding: 4px 18px;
        font-size: 10px;
    }
}