@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #1E3A8A;
    --secondary: #F97316;
    --accent: #3B82F6;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-400: #94A3B8;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --white: #FFFFFF;
    --green: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px rgba(30, 58, 138, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-menu a {
    color: var(--slate-700);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--slate-700);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--accent);
    color: var(--white);
}

.nav-cta {
    padding: 12px 24px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.navbar.scrolled .mobile-toggle {
    color: var(--slate-800);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    padding: 14px 0;
    border-bottom: 1px solid var(--slate-200);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    font-weight: 500;
    color: var(--slate-700);
    font-size: 16px;
    display: block;
}

.mobile-menu a:hover {
    color: var(--secondary);
}

.mobile-submenu {
    list-style: none;
    padding-left: 16px;
    margin-top: 8px;
}

.mobile-submenu li {
    padding: 8px 0;
    border-bottom: none;
}

.mobile-cta-wrap {
    padding: 16px 0;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(249, 115, 22, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(32px, 6vw, 72px);
    color: var(--white);
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
}

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

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ========== TRUST BAR ========== */
.trust-bar {
    padding: 30px 0;
    background: white;
    border-bottom: 1px solid var(--slate-200);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-label {
    color: var(--slate-600);
    font-weight: 500;
}

.trust-item {
    color: var(--slate-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--slate-50);
}

.section-dark {
    background: var(--slate-900);
    color: var(--white);
}

.section-primary {
    background: var(--primary);
    color: var(--white);
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-dark .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.section-title {
    font-size: clamp(26px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--slate-600);
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.service-icon.blue { background: #3B82F6; }
.service-icon.purple { background: #8B5CF6; }
.service-icon.green { background: #10B981; }
.service-icon.orange { background: #F97316; }
.service-icon.pink { background: #EC4899; }
.service-icon.cyan { background: #06B6D4; }

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--slate-800);
}

.service-card p {
    color: var(--slate-600);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.service-link:hover {
    color: var(--secondary);
}

/* ========== STATS ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* ========== WHY CHOOSE US ========== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.feature-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 24px;
}

.feature-card i {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--slate-600);
}

/* ========== INDUSTRIES ========== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.industry-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.industry-card:hover i {
    color: var(--secondary);
}

.industry-card span {
    font-size: 14px;
    font-weight: 500;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--slate-600);
}

/* ========== SERVICE AREAS ========== */
.areas-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.area-tag {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s ease;
    cursor: pointer;
}

.area-tag:hover {
    background: var(--secondary);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--slate-900) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

/* ========== CHECKLIST ========== */
.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--slate-700);
}

.checklist i {
    color: #10B981;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--slate-900);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--secondary);
}

.footer-col h5 {
    font-size: 14px;
    margin: 24px 0 12px;
    color: rgba(255, 255, 255, 0.8);
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-areas span {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ========== FLOATING CTA ========== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-btn.whatsapp {
    background: var(--green);
}

.floating-btn.phone {
    background: var(--secondary);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--primary);
    padding: 140px 0 80px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--slate-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--slate-200);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateX(8px);
}

.contact-card i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card.whatsapp i {
    background: var(--green);
}

.contact-card.email i {
    background: var(--primary);
}

.contact-card-text p {
    font-size: 14px;
    color: var(--slate-600);
}

.contact-card-text strong {
    font-size: 16px;
    color: var(--slate-800);
}

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--slate-600);
}

.blog-category {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-card h3:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== PROCESS / HOW WE WORK SECTION ========== */
.process-section {
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.process-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30,58,138,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.process-badge {
    background: rgba(59,130,246,0.15) !important;
    color: #60a5fa !important;
    border: 1px solid rgba(59,130,246,0.25);
}

/* Timeline layout */
.process-timeline {
    position: relative;
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    min-height: 180px;
}

/* Connector column */
.process-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.process-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, rgba(59,130,246,0.5), rgba(249,115,22,0.3));
    position: relative;
    overflow: hidden;
}

.process-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #3b82f6, transparent);
    animation: lineFlow 2.5s ease-in-out infinite;
}

@keyframes lineFlow {
    0% { top: -60px; }
    100% { top: 100%; }
}

.process-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid var(--slate-900);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.3), 0 0 20px rgba(249,115,22,0.4);
    flex-shrink: 0;
    z-index: 1;
}

.process-connector.last .process-dot {
    box-shadow: 0 0 0 3px rgba(249,115,22,0.5), 0 0 30px rgba(249,115,22,0.6);
}

/* Step sides */
.process-step-left,
.process-step-right {
    padding: 20px 32px;
}



.process-step.reverse .process-step-left {
    order: 3;
}
.process-step.reverse .process-connector {
    order: 2;
}
.process-step.reverse .process-step-right {
    order: 1;
}

/* Icon */
.process-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step:not(.reverse) .process-icon-wrap {
    justify-content: flex-end;
}
.process-step.reverse .process-icon-wrap {
    justify-content: flex-start;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1d4ed8, #1E3A8A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(59,130,246,0.3);
    transition: transform 0.3s ease;
}

.process-icon.orange { background: linear-gradient(135deg, #ea580c, #c2410c); border-color: rgba(249,115,22,0.3); }
.process-icon.green  { background: linear-gradient(135deg, #059669, #047857); border-color: rgba(16,185,129,0.3); }
.process-icon.purple { background: linear-gradient(135deg, #7c3aed, #6d28d9); border-color: rgba(139,92,246,0.3); }
.process-icon.gold   { background: linear-gradient(135deg, #d97706, #b45309); border-color: rgba(245,158,11,0.3); }

.process-icon-glow {
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background: rgba(59,130,246,0.1);
    filter: blur(16px);
    z-index: 0;
    transition: opacity 0.3s ease;
}
.process-icon-glow.orange { background: rgba(249,115,22,0.12); }
.process-icon-glow.green  { background: rgba(16,185,129,0.12); }
.process-icon-glow.purple { background: rgba(139,92,246,0.12); }
.process-icon-glow.gold   { background: rgba(245,158,11,0.12); }

/* Cards */
.process-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(8px);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.6), transparent);
}

.process-card:hover {
    border-color: rgba(59,130,246,0.25);
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
}

.process-card:hover .process-icon {
    transform: scale(1.08) rotate(-3deg);
}

.process-step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 20px;
    letter-spacing: -4px;
    user-select: none;
}

.process-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.process-card p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.75;
    position: relative;
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    position: relative;
}

.process-tags span {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(59,130,246,0.12);
    color: #93c5fd;
    border: 1px solid rgba(59,130,246,0.2);
    letter-spacing: 0.03em;
}

/* CTA strip */
.process-cta-strip {
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.process-cta-strip-inner {
    background: linear-gradient(135deg, rgba(30,58,138,0.6), rgba(249,115,22,0.15));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    backdrop-filter: blur(12px);
}

.process-cta-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    margin-bottom: 6px;
}

.process-cta-strip-inner h3 {
    font-size: 26px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

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

/* Large Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

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

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .section {
        padding: 60px 0;
    }

    /* Navbar */
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Hero */
    .hero {
        min-height: 65vh;
        padding-top: 70px;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }

    /* Trust Bar */
    .trust-bar {
        padding: 20px 0;
    }

    .trust-bar-inner {
        gap: 12px;
    }

    .trust-label {
        width: 100%;
        text-align: center;
    }

    .trust-item {
        font-size: 12px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .service-card {
        padding: 24px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Why Choose Us */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .feature-card {
        padding: 16px;
    }

    .feature-card h4 {
        font-size: 15px;
    }

    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 32px;
        gap: 12px;
    }

    .industry-card {
        padding: 16px 8px;
    }

    .industry-card i {
        font-size: 22px;
    }

    .industry-card span {
        font-size: 12px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* Service Areas */
    .area-tag {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* CTA Section */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .service-areas {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 40px;
        font-size: 13px;
    }

    /* Process Section */
    .process-step {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        min-height: unset;
    }

    .process-step-left,
    .process-step-right {
        padding: 12px 0 12px 16px;
    }

    /* Normal steps */
    .process-step:not(.reverse) .process-step-left {
        display: none;
    }
    .process-step:not(.reverse) .process-connector {
        grid-column: 1;
        grid-row: 1 / 3;
    }
    .process-step:not(.reverse) .process-step-right {
        grid-column: 2;
        grid-row: 1;
    }

    /* Reverse steps — flatten to same layout */
    .process-step.reverse {
        grid-template-columns: 40px 1fr;
    }
    .process-step.reverse .process-step-right {
        display: none;
    }
    .process-step.reverse .process-step-left {
        order: unset;
        grid-column: 2;
        grid-row: 1;
    }
    .process-step.reverse .process-connector {
        order: unset;
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .process-connector {
        align-items: center;
    }

    .process-line {
        width: 2px;
        min-height: 100%;
    }

    .process-dot {
        width: 16px;
        height: 16px;
    }

    .process-card {
        padding: 22px 20px;
    }

    .process-step-number {
        font-size: 44px;
        top: 8px;
        right: 12px;
    }

    .process-card h3 {
        font-size: 18px;
    }

    .process-cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        text-align: left;
    }

    .process-cta-strip-inner .btn {
        width: 100%;
        justify-content: center;
    }

    .process-cta-strip-inner h3 {
        font-size: 20px;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    /* Contact Form */
    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Floating CTA - smaller on mobile */
    .floating-cta {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    /* Section typography */
    .section-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }

    /* Why Choose Us checklist */
    .checklist li {
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 28px;
    }

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

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

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

    .stat-number {
        font-size: 30px;
    }

    .trust-bar-inner {
        gap: 10px;
    }

    .area-tag {
        padding: 8px 14px;
        font-size: 13px;
    }

    .btn {
        font-size: 15px;
        padding: 12px 24px;
    }

    .section {
        padding: 50px 0;
    }

    .logo img {
        height: 40px;
    }
}



 .seo-hero {
            position: relative;
            min-height: 100vh;
            padding-top: 90px;
            background: linear-gradient(135deg, #0A1628 0%, #1E3A8A 40%, #1a2f6e 70%, #0d1f4a 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .seo-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 80% 30%, rgba(249, 115, 22, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse 40% 60% at 10% 80%, rgba(59, 130, 246, 0.22) 0%, transparent 55%),
                radial-gradient(ellipse 30% 40% at 50% 10%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }

        .seo-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridShift 20s linear infinite;
        }

        @keyframes gridShift {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(60px);
            }
        }

        .seo-hero-floats {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .float-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: orbFloat 8s ease-in-out infinite;
        }

        .float-orb:nth-child(1) {
            width: 400px;
            height: 400px;
            background: rgba(249, 115, 22, 0.12);
            top: -100px;
            right: -50px;
            animation-delay: 0s;
        }

        .float-orb:nth-child(2) {
            width: 300px;
            height: 300px;
            background: rgba(59, 130, 246, 0.15);
            bottom: 50px;
            left: -80px;
            animation-delay: -4s;
        }

        .float-orb:nth-child(3) {
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            top: 40%;
            left: 45%;
            animation-delay: -2s;
        }

        @keyframes orbFloat {

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

            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

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

        .seo-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(249, 115, 22, 0.15);
            border: 1px solid rgba(249, 115, 22, 0.4);
            color: #FED7AA;
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 8px 18px;
            border-radius: 100px;
            margin-bottom: 28px;
            animation: badgePulse 3s ease-in-out infinite;
        }

        @keyframes badgePulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.3);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
            }
        }

        .seo-hero-badge i {
            color: var(--secondary);
            font-size: 13px;
        }

        .seo-hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(40px, 4.5vw, 68px);
            font-weight: 800;
            line-height: 1.08;
            color: var(--white);
            margin-bottom: 24px;
        }

        .seo-hero-title .highlight {
            background: linear-gradient(135deg, var(--secondary), #FCD34D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .seo-hero-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.68);
            margin-bottom: 40px;
            max-width: 520px;
            line-height: 1.75;
        }

        .seo-hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 56px;
        }

        .btn-primary-seo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--secondary), #EA580C);
            color: white;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 15px;
            padding: 16px 34px;
            border-radius: 12px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-primary-seo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary-seo:hover::before {
            left: 100%;
        }

        .btn-primary-seo:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(249, 115, 22, 0.5);
        }

        .btn-outline-seo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 15px;
            padding: 16px 30px;
            border-radius: 12px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .btn-outline-seo:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

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

        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .hero-stat-num {
            font-family: 'Outfit', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }

        .hero-stat-num span {
            color: var(--secondary);
        }

        .hero-stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* RIGHT SIDE — animated SERP card stack */
        .seo-hero-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .serp-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 20px 24px;
            backdrop-filter: blur(12px);
            transition: all 0.4s ease;
            animation: serpReveal 0.6s ease forwards;
            opacity: 0;
            transform: translateX(40px);
        }

        .serp-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .serp-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .serp-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes serpReveal {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .serp-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(249, 115, 22, 0.4);
            transform: translateX(-6px);
        }

        .serp-card.rank-1 {
            border-color: rgba(249, 115, 22, 0.4);
            background: rgba(249, 115, 22, 0.08);
        }

        .serp-rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--secondary), #EA580C);
            border-radius: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
        }

        .serp-card.rank-2 .serp-rank-badge,
        .serp-card.rank-3 .serp-rank-badge {
            background: rgba(255, 255, 255, 0.15);
            font-size: 12px;
        }

        .serp-url {
            font-size: 11px;
            color: #86EFAC;
            margin-bottom: 4px;
        }

        .serp-title-text {
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #93C5FD;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .serp-snippet {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
        }

        .rank-indicator {
            position: absolute;
            top: -20px;
            right: -20px;
            background: linear-gradient(135deg, #22C55E, #16A34A);
            color: white;
            font-family: 'Outfit', sans-serif;
            font-size: 11px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
            animation: rankPulse 2s ease-in-out infinite;
        }

        @keyframes rankPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* ============================================
   SECTION 2 — SEO PILLARS / WHY SEO
============================================ */
        .seo-pillars {
            padding: 120px 0;
            background: linear-gradient(160deg, #0F172A 0%, #1E2D4F 35%, #162040 70%, #0A1628 100%);
            position: relative;
            overflow: hidden;
        }

        .seo-pillars::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.6), transparent);
        }

        .seo-pillars::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 50% 60% at 90% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .section-heading {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 3.5vw, 52px);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .section-heading .accent {
            color: var(--secondary);
        }

        .section-sub {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.55);
            max-width: 600px;
            line-height: 1.75;
        }

        .pillars-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            margin-bottom: 72px;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .pillar-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 36px 30px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            cursor: default;
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

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

        .pillar-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
        }

        .pillar-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 24px;
            transition: transform 0.3s ease;
        }

        .pillar-card:hover .pillar-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .pillar-icon.blue {
            background: rgba(59, 130, 246, 0.15);
            color: #60A5FA;
        }

        .pillar-icon.orange {
            background: rgba(249, 115, 22, 0.15);
            color: #FB923C;
        }

        .pillar-icon.green {
            background: rgba(34, 197, 94, 0.15);
            color: #4ADE80;
        }

        .pillar-icon.purple {
            background: rgba(168, 85, 247, 0.12);
            color: #C084FC;
        }

        .pillar-icon.yellow {
            background: rgba(234, 179, 8, 0.12);
            color: #FBBF24;
        }

        .pillar-icon.teal {
            background: rgba(20, 184, 166, 0.12);
            color: #2DD4BF;
        }

        .pillar-title {
            font-family: 'Outfit', sans-serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }

        .pillar-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.7;
        }

        .pillar-metric {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 20px;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #4ADE80;
        }

        .pillar-metric i {
            font-size: 11px;
        }

        /* ============================================
   SECTION 3 — INTERACTIVE SEO PROCESS
============================================ */
        .seo-process {
            padding: 130px 0;
            background: linear-gradient(180deg, #0A1628 0%, #13203D 30%, #1a2d55 60%, #0F172A 100%);
            position: relative;
            overflow: hidden;
        }

        .seo-process::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 40% at 50% 0%, rgba(249, 115, 22, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 20% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .process-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .process-header .section-label {
            justify-content: center;
        }

        .process-header .section-label::before {
            display: none;
        }

        .process-header .section-label::after {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .process-header .section-sub {
            margin: 0 auto;
            text-align: center;
        }

        .process-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .process-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 100px;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.55);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .process-tab:hover {
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.85);
        }

        .process-tab.active {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.15));
            border-color: rgba(249, 115, 22, 0.5);
            color: #FED7AA;
        }

        .process-tab .tab-num {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .process-tab.active .tab-num {
            background: var(--secondary);
            color: white;
        }

        .process-panels {
            position: relative;
        }

        .process-panel {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
            animation: panelIn 0.5s ease;
        }

        .process-panel.active {
            display: grid;
        }

        @keyframes panelIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .process-panel-content {}

        .process-step-num {
            font-family: 'Outfit', sans-serif;
            font-size: 80px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.05);
            line-height: 1;
            margin-bottom: -20px;
        }

        .process-panel-title {
            font-family: 'Outfit', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .process-panel-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.58);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .process-checklist {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .process-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
        }

        .process-checklist li i {
            color: #4ADE80;
            font-size: 14px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .process-panel-visual {
            position: relative;
        }

        .process-mockup {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(8px);
        }

        .mockup-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .mockup-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .mockup-dot:nth-child(1) {
            background: #FF5F57;
        }

        .mockup-dot:nth-child(2) {
            background: #FEBC2E;
        }

        .mockup-dot:nth-child(3) {
            background: #28C840;
        }

        .mockup-url {
            flex: 1;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            padding: 6px 14px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* Audit table inside mockup */
        .audit-table {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .audit-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            animation: rowReveal 0.4s ease forwards;
            opacity: 0;
        }

        .audit-row:nth-child(1) {
            animation-delay: 0.1s;
        }

        .audit-row:nth-child(2) {
            animation-delay: 0.2s;
        }

        .audit-row:nth-child(3) {
            animation-delay: 0.3s;
        }

        .audit-row:nth-child(4) {
            animation-delay: 0.4s;
        }

        .audit-row:nth-child(5) {
            animation-delay: 0.5s;
        }

        @keyframes rowReveal {
            to {
                opacity: 1;
            }
        }

        .audit-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .audit-score {
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 100px;
        }

        .audit-score.good {
            background: rgba(34, 197, 94, 0.15);
            color: #4ADE80;
        }

        .audit-score.warn {
            background: rgba(234, 179, 8, 0.15);
            color: #FBBF24;
        }

        .audit-score.bad {
            background: rgba(239, 68, 68, 0.15);
            color: #F87171;
        }

        /* ============================================
   SECTION 4 — SEO WINS (WHY SEO) CONTENT SECTION
============================================ */
        .seo-wins {
            padding: 130px 0;
            background: linear-gradient(160deg, #0A1628 0%, #13223d 30%, #1b3060 60%, #0d1f40 100%);
            position: relative;
            overflow: hidden;
        }

        .seo-wins::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 60% at 100% 30%, rgba(249, 115, 22, 0.09) 0%, transparent 55%),
                radial-gradient(ellipse 40% 50% at 0% 80%, rgba(59, 130, 246, 0.09) 0%, transparent 55%);
            pointer-events: none;
        }

        .wins-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .wins-header .section-label {
            justify-content: center;
        }

        .wins-header .section-label::before {
            display: none;
        }

        .wins-header .section-label::after {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .wins-header .section-sub {
            margin: 0 auto;
            text-align: center;
        }

        .wins-compare {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
            align-items: stretch;
            margin-bottom: 72px;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            z-index: 1;
        }

        .wins-compare-side {
            padding: 48px 40px;
        }

        .wins-compare-side.without {
            background: rgba(239, 68, 68, 0.06);
            border-right: 1px solid rgba(255, 255, 255, 0.07);
        }

        .wins-compare-side.with {
            background: rgba(34, 197, 94, 0.06);
        }

        .compare-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 28px;
        }

        .compare-label.bad {
            background: rgba(239, 68, 68, 0.15);
            color: #F87171;
        }

        .compare-label.good {
            background: rgba(34, 197, 94, 0.15);
            color: #4ADE80;
        }

        .compare-title {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .compare-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .compare-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        .compare-list li i {
            font-size: 14px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .compare-list.bad-list li i {
            color: #F87171;
        }

        .compare-list.good-list li i {
            color: #4ADE80;
        }

        .wins-compare-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.03);
            padding: 0 28px;
        }

        .vs-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary), #EA580C);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 800;
            color: white;
            box-shadow: 0 0 32px rgba(249, 115, 22, 0.5);
            flex-shrink: 0;
        }

        .wins-insights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .insight-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 36px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .insight-card::before {
            content: attr(data-num);
            position: absolute;
            top: -10px;
            right: 20px;
            font-family: 'Outfit', sans-serif;
            font-size: 100px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            line-height: 1;
            pointer-events: none;
            transition: color 0.4s ease;
        }

        .insight-card:hover::before {
            color: rgba(249, 115, 22, 0.06);
        }

        .insight-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(249, 115, 22, 0.25);
            transform: translateY(-6px);
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
        }

        .insight-stat {
            font-family: 'Outfit', sans-serif;
            font-size: 52px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 8px;
            background: linear-gradient(135deg, var(--secondary), #FCD34D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .insight-title {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .insight-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.75;
        }

        .insight-source {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
            font-style: italic;
        }

        /* ============================================
   SECTION — ENQUIRY FORM
============================================ */
        .seo-enquiry {
            padding: 130px 0;
            background: linear-gradient(150deg, #0F172A 0%, #1a2d55 35%, #1E3A8A 65%, #162040 100%);
            position: relative;
            overflow: hidden;
        }

        .seo-enquiry::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 55% 60% at 70% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 55%);
            pointer-events: none;
        }

        .enquiry-inner {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .enquiry-intro-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(249, 115, 22, 0.12);
            border: 1px solid rgba(249, 115, 22, 0.35);
            color: #FED7AA;
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 8px 18px;
            border-radius: 100px;
            margin-bottom: 28px;
        }

        .enquiry-heading {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 3.5vw, 50px);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .enquiry-heading .orange {
            color: var(--secondary);
        }

        .enquiry-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 480px;
        }

        .enquiry-promises {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .promise-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .promise-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .promise-icon.orange {
            background: rgba(249, 115, 22, 0.15);
            color: #FB923C;
        }

        .promise-icon.blue {
            background: rgba(59, 130, 246, 0.15);
            color: #60A5FA;
        }

        .promise-icon.green {
            background: rgba(34, 197, 94, 0.15);
            color: #4ADE80;
        }

        .promise-text strong {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2px;
        }

        .promise-text span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.5;
        }

        .enquiry-social-proof {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
        }

        .proof-avatars {
            display: flex;
        }

        .proof-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.15);
            margin-left: -8px;
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .proof-avatar:first-child {
            margin-left: 0;
        }

        .proof-avatar:nth-child(1) {
            background: #7C3AED;
        }

        .proof-avatar:nth-child(2) {
            background: #059669;
        }

        .proof-avatar:nth-child(3) {
            background: #DC2626;
        }

        .proof-avatar:nth-child(4) {
            background: #D97706;
        }

        .proof-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.4;
        }

        .proof-text strong {
            color: rgba(255, 255, 255, 0.9);
            font-family: 'Outfit', sans-serif;
        }

        .enquiry-form-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 28px;
            padding: 48px 44px;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .enquiry-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), #FBBF24, var(--accent));
            border-radius: 28px 28px 0 0;
        }

        .form-card-title {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 6px;
        }

        .form-card-subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: wheat !important;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .form-label span {
            color: var(--secondary);
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 14px 18px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            outline: none;
            transition: all 0.3s ease;
            -webkit-appearance: none;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: rgba(249, 115, 22, 0.5);
            background: rgba(255, 255, 255, 0.09);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
        }

        .form-select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .form-select option {
            background: #1E3A8A;
            color: white;
        }

        .form-textarea {
            resize: none;
            height: 90px;
            line-height: 1.6;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-interest-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .interest-chip {
            padding: 8px 16px;
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.55);
            font-family: 'Outfit', sans-serif;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            user-select: none;
        }

        .interest-chip:hover,
        .interest-chip.selected {
            background: rgba(249, 115, 22, 0.15);
            border-color: rgba(249, 115, 22, 0.45);
            color: #FED7AA;
        }

        .form-submit-btn {
            width: 100%;
            padding: 18px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--secondary), #EA580C);
            color: white;
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 800;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 28px;
            box-shadow: 0 8px 32px rgba(249, 115, 22, 0.35);
            position: relative;
            overflow: hidden;
        }

        .form-submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.5s ease;
        }

        .form-submit-btn:hover::before {
            left: 100%;
        }

        .form-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(249, 115, 22, 0.5);
        }

        .form-disclaimer {
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 14px;
            line-height: 1.5;
        }

        .form-disclaimer i {
            color: #4ADE80;
            margin-right: 4px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 20px 0;
        }

        .success-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.15);
            border: 2px solid rgba(34, 197, 94, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #4ADE80;
            margin: 0 auto 20px;
            animation: successPop 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        @keyframes successPop {
            0% {
                transform: scale(0);
                opacity: 0;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-title {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 10px;
        }

        .success-text {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
        }

        /* ============================================
   SECTION 5 — RESULTS / CASE STUDIES
============================================ */
        .seo-results {
            padding: 130px 0;
            background: linear-gradient(165deg, #091525 0%, #132038 40%, #1b2d50 70%, #0d1f3c 100%);
            position: relative;
            overflow: hidden;
        }

        .seo-results::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 40% at 0% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
                radial-gradient(ellipse 40% 40% at 100% 20%, rgba(249, 115, 22, 0.06) 0%, transparent 55%);
            pointer-events: none;
        }

        .results-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: end;
            margin-bottom: 72px;
        }

        .results-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .result-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 36px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .result-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: linear-gradient(180deg, var(--secondary), var(--accent));
            transition: height 0.5s ease;
        }

        .result-card:hover::before {
            height: 100%;
        }

        .result-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(59, 130, 246, 0.25);
            transform: translateY(-6px);
        }

        .result-industry {
            font-family: 'Outfit', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 6px;
        }

        .result-company {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .result-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .metric-box {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .metric-val {
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 4px;
        }

        .metric-val.up {
            color: #4ADE80;
        }

        .metric-val.orange {
            color: #FB923C;
        }

        .metric-val.blue {
            color: #60A5FA;
        }

        .metric-key {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.3;
        }

        .result-quote {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            line-height: 1.65;
            border-left: 2px solid rgba(249, 115, 22, 0.4);
            padding-left: 14px;
        }

        /* Big stat card */
        .result-card.big-stat {
            grid-column: span 2;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(234, 88, 12, 0.06));
            border-color: rgba(249, 115, 22, 0.25);
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .big-stat-main {
            flex: 0 0 auto;
        }

        .big-stat-num {
            font-family: 'Outfit', sans-serif;
            font-size: 80px;
            font-weight: 800;
            color: var(--secondary);
            line-height: 1;
        }

        .big-stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        .big-stat-bar-area {
            flex: 1;
            min-width: 200px;
        }

        .bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 6px;
        }

        .bar-label span:last-child {
            color: #4ADE80;
            font-weight: 600;
        }

        .progress-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            overflow: hidden;
            margin-bottom: 14px;
        }

        .progress-fill {
            height: 100%;
            border-radius: 100px;
            background: linear-gradient(90deg, var(--secondary), #FBBF24);
            animation: fillBar 1.5s ease forwards;
            width: 0;
        }

        .progress-fill.blue {
            background: linear-gradient(90deg, var(--accent), #60A5FA);
        }

        .progress-fill.green {
            background: linear-gradient(90deg, #22C55E, #4ADE80);
        }

        @keyframes fillBar {
            to {
                width: var(--fill);
            }
        }

        /* ============================================
   SECTION 6 — TOOLS & TECHNOLOGY
============================================ */
        .seo-tools {
            padding: 130px 0;
            background: linear-gradient(180deg, #0d1f3c 0%, #162340 40%, #1E3A8A 80%, #1a3280 100%);
            position: relative;
            overflow: hidden;
        }

        .seo-tools::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
        }

        .tools-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .tools-header .section-label {
            justify-content: center;
        }

        .tools-header .section-label::before {
            display: none;
        }

        .tools-header .section-label::after {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .tools-header .section-sub {
            margin: 0 auto;
            text-align: center;
        }

        .tools-marquee-wrap {
            overflow: hidden;
            margin-bottom: 48px;
        }

        .tools-marquee {
            display: flex;
            gap: 20px;
            animation: marqueeLeft 30s linear infinite;
            width: max-content;
        }

        .tools-marquee-reverse {
            animation-direction: reverse;
            animation-duration: 25s;
        }

        @keyframes marqueeLeft {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .tool-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            padding: 12px 22px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .tool-pill:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(249, 115, 22, 0.4);
        }

        .tool-pill-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .tool-pill-name {
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
        }

        /* ============================================
   SECTION 7 — FAQ / SEO QUESTIONS
============================================ */
        .seo-faq {
            padding: 130px 0;
            background: linear-gradient(160deg, #1a3280 0%, #1E3A8A 25%, #162447 55%, #0F172A 100%);
            position: relative;
            overflow: hidden;
        }

        .seo-faq::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 60% at 100% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
                radial-gradient(ellipse 40% 40% at 0% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .faq-inner {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .faq-sticky {
            position: sticky;
            top: 100px;
        }

        .faq-feature-box {
            margin-top: 40px;
            background: rgba(249, 115, 22, 0.08);
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: 20px;
            padding: 32px;
        }

        .faq-feature-box-title {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .faq-feature-box p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .faq-feature-box a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: gap 0.2s ease;
        }

        .faq-feature-box a:hover {
            gap: 12px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .faq-item.open {
            border-color: rgba(249, 115, 22, 0.3);
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 22px 26px;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.3s ease;
            user-select: none;
        }

        .faq-item.open .faq-q {
            color: var(--white);
        }

        .faq-q-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .faq-item.open .faq-q-icon {
            background: rgba(249, 115, 22, 0.2);
            color: var(--secondary);
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.8;
            padding: 0 26px;
        }

        .faq-item.open .faq-a {
            max-height: 300px;
            padding: 0 26px 24px;
        }

        /* ============================================
   SECTION 8 — CTA BANNER
============================================ */
        .seo-cta {
            padding: 120px 0;
            background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #162040 100%);
            position: relative;
            overflow: hidden;
        }

        .seo-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 80% at 50% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse 30% 40% at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-inner {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 780px;
            margin: 0 auto;
        }

        .cta-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 24px;
        }

        .cta-heading {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .cta-heading .orange {
            color: var(--secondary);
        }

        .cta-sub {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 48px;
            line-height: 1.7;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto 28px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-input {
            flex: 1;
            min-width: 220px;
            padding: 16px 22px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.07);
            color: white;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            outline: none;
            transition: border-color 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .cta-input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .cta-input:focus {
            border-color: rgba(249, 115, 22, 0.5);
        }

        .cta-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
        }

        .trust-item i {
            color: #4ADE80;
            font-size: 12px;
        }

        /* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 58px;
            height: 58px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: white;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            animation: waPulse 2.5s ease-in-out infinite;
        }

        @keyframes waPulse {

            0%,
            100% {
                box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
        }

        @keyframes shake {

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

            20%,
            60% {
                transform: translateX(-6px);
            }

            40%,
            80% {
                transform: translateX(6px);
            }
        }

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

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

            .pillars-header {
                grid-template-columns: 1fr;
                gap: 24px;
            }

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

            .process-panel.active {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .results-header {
                grid-template-columns: 1fr;
                gap: 24px;
            }

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

            .result-card.big-stat {
                grid-column: span 1;
                gap: 30px;
            }

            .faq-inner {
                grid-template-columns: 1fr;
            }

            .faq-sticky {
                position: static;
            }
        }

        @media (max-width: 1024px) {
            .wins-compare {
                grid-template-columns: 1fr;
            }

            .wins-compare-divider {
                padding: 20px;
            }

            .wins-insights {
                grid-template-columns: 1fr;
            }

            .enquiry-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 20px;
            }

            .seo-hero {
                min-height: auto;
                padding: 100px 0 80px;
            }

            .seo-hero-inner {
                padding: 0 20px;
            }

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

            .seo-pillars,
            .seo-process,
            .seo-wins,
            .seo-results,
            .seo-tools,
            .seo-faq,
            .seo-enquiry,
            .seo-cta {
                padding: 80px 0;
            }

            .hero-stats-row {
                gap: 24px;
            }

            .cta-form {
                flex-direction: column;
            }

            .process-tabs {
                gap: 8px;
            }

            .process-tab {
                padding: 10px 16px;
                font-size: 13px;
            }

            .process-step-num {
                font-size: 56px;
            }

            .seo-hero-ctas {
                justify-content: center !important;
            }

            .wins-compare-side {
                padding: 34px 18px;
            }

            .enquiry-form-card {

                padding: 48px 12px;

            }

            .seo-hero-ctas {
                margin-bottom: 0px !important;
            }
        }
        
        
        
            /* ============================================
   SECTION — LOCAL SEO EDITORIAL
============================================ */
.seo-editorial {
    padding: 120px 0;
    background: linear-gradient(155deg, #0d1f3c 0%, #162447 40%, #1b3268 70%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

.seo-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 45% 70% at 0% 50%, rgba(59,130,246,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 35% 50% at 100% 30%, rgba(249,115,22,0.07) 0%, transparent 55%);
    pointer-events: none;
}

.seo-editorial::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
}

.editorial-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.editorial-left {
    position: sticky;
    top: 110px;
}

.editorial-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.editorial-body {
    font-size: 16px;
    color: rgba(255,255,255,0.62);
    line-height: 1.9;
    padding-left: 20px;
    border-left: 2px solid rgba(255,255,255,0.07);
    transition: border-color 0.3s ease;
}

.editorial-body:first-of-type {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    border-left-color: rgba(249,115,22,0.5);
    font-weight: 500;
}

.editorial-body:hover {
    border-left-color: rgba(249,115,22,0.4);
    color: rgba(255,255,255,0.75);
}

.editorial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    padding-left: 20px;
}

.etag {
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.25);
    color: #93C5FD;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: default;
}

.etag:hover {
    background: rgba(249,115,22,0.12);
    border-color: rgba(249,115,22,0.35);
    color: #FED7AA;
}

@media (max-width: 1024px) {
    .editorial-inner { grid-template-columns: 1fr; gap: 40px; }
    .editorial-left { position: static; }
    .section-heading {
   
    font-size: clamp(28px, 3.5vw, 52px) ! important;
    
}
}


 .interest-chip.active {
            background-color: #f97316;
            color: #ffffff;
            border-color: #f97316;
            font-weight: 600;
        }

