

/* ==============================
   VARIABLES & DESIGN SYSTEM
================================ */
:root {
    --primary-blue: #1d4ed8;
    --primary-blue-hover: #1e3a8a;
    --accent-red: #ef4444;
    --accent-red-hover: #dc2626;
    --dark-text: #0f172a;
    --light-text: #ffffff;
    --nav-transparent: transparent;
    --nav-scrolled: rgba(255, 255, 255, 0.98);
    --border-color: rgba(15, 23, 42, 0.08);
    --shadow-scrolled: 0 4px 20px rgba(0, 0, 0, 0.05);
    --light-blue: #eff6ff;
    --font-main: 'Inter', sans-serif;
    --transition-speed: 0.35s;
    --blue-primary: #1565c0;
    --blue-deep: #0d47a1;
    --blue-light: #1976d2;
    --blue-accent: #42a5f5;
    --bg-card: #e8f1fd;
    --text-dark: #0d1b3e;
    --text-muted: #5a6a8a;
}

/* ==============================
   RESET & GLOBAL
================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background-color: #f8fafc;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 48px;
    max-width: 160px;
    object-fit: contain;
}


/* ==============================
   HERO SECTION
================================ */


.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 90px;
    background: #002255;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(2, 30, 84, 0.95) 0%, rgba(2, 30, 84, 0.85) 40%, rgba(2, 30, 84, 0.6) 100%),
        url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 360px;
    grid-template-rows: auto auto;
    gap: 0 50px;
    align-items: center;
    animation: fadeIn 1s ease 0.2s both;
}

.hero-pricing-block {
    grid-column: 1;
    grid-row: 1;
    color: #fff;
    padding-top: 20px;
}

.hero-description-block {
    grid-column: 1;
    grid-row: 2;
    color: #fff;
    padding-bottom: 30px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero-description {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 22px;
    line-height: 1.4;
    color: #e2e8f0;
}

.hero-features {
    margin-bottom: 28px;
}

.hero-features li {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.hero-features i {
    color: #e2e8f0;
    font-size: 17px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.google-logo {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.google-logo img {
    width: 32px;
    height: 32px;
}

.rating-info {
    display: flex;
    flex-direction: column;
}

.rating-score {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    color: #fff;
}

.rating-stars {
    color: #fbbf24;
    font-size: 15px;
}

.hero-benefits {
    background-color: #fb300e;
    color: #fff;
    padding: 11px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 8px;
}
.hero-terms {
    font-size: 12px;
    color: #cbd5e1;
    font-style: italic;
}

.hero-form-right {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}

.form-card {
    background-color: #0b2253;
    border-radius: 12px;
    padding: 28px 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    margin-bottom: 20px;
}

.form-header h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.form-header p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.consultation-form .form-group {
    margin-bottom: 14px;
}

.consultation-form input,
.consultation-form select {
    width: 100%;
    padding: 11px 13px;
    border: none;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.consultation-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.5L6 6.5L11 1.5" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.phone-group {
    display: flex;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.phone-group .country-code {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #f1f5f9;
    border-right: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.phone-group input {
    border-radius: 0;
    width: 100%;
}

.form-submit-btn {
    width: 100%;
    background: #fb300e;
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}
.form-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.privacy-guarantee {
    text-align: center;
    color: #cbd5e1;
    font-size: 12px;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* HERO RESPONSIVE */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding-top: 30px;
    }

    .hero-pricing-block {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }

    .hero-form-right {
        grid-column: 1;
        grid-row: 2;
        max-width: 500px;
        width: 100%;
        margin: 24px auto 0;
    }

    .hero-description-block {
        grid-column: 1;
        grid-row: 3;
        text-align: center;
        margin-top: 24px;
    }

    .hero-rating,
    .hero-pricing {
        justify-content: center;
    }

    .hero-benefits {
        align-self: center;
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 80px;
    }

    .hero-container {
        padding: 24px 16px 40px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-features {
        display: none;
    }

    /* hidden on very small screens */
    .form-card {
        padding: 22px 16px;
    }

    .form-header h2 {
        font-size: 22px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* ======================================================
   STEPS SECTION — fully responsive using CSS classes
====================================================== */
.steps-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 40px 60px;
}

.steps-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.steps-heading-text {
    flex: 1;
    min-width: 240px;
}

.steps-subtitle {
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.steps-main-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.steps-highlight {
    background: linear-gradient(135deg, #1565c0, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-cta-btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 13px 28px;
    background: linear-gradient(135deg, #1565c0, #1976d2);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(21, 101, 192, 0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.steps-cta-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 32px rgba(21, 101, 192, 0.45);
}

/* STEP CARDS GRID — FIX: was inline repeat(5,1fr) */
.steps-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.step-card {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 32px 18px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(21, 101, 192, 0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.step-card:hover {
    box-shadow: 0 8px 32px rgba(21, 101, 192, 0.18);
    transform: translateY(-4px);
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1565c0, #42a5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
}

.step-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.step-card-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Steps responsive */
@media (max-width: 1100px) {
    .steps-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 50px 20px 40px;
    }

    .steps-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-cta-btn {
        width: 100%;
        text-align: center;
    }

    .steps-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .steps-cards-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .steps-heading-row {
        align-items: center;
        text-align: center;
    }

    .steps-heading-text {
        text-align: center;
    }
}

/* ======================================================
   CHANNEL PARTNERS — logo carousel (keep moving on all screens)
====================================================== */
.partners-section {
    background: #ffffff;
    padding: 48px 0;
    border-top: 1px solid rgba(21, 101, 192, 0.08);
    overflow: hidden;
}

.partners-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.partners-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.logo-track-wrap {
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.logo-track-wrap::before,
.logo-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.logo-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.logo-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* THE SCROLLING STRIP — FIX: added will-change for smooth animation */
.logo-track {
    display: flex;
    gap: 48px;
    align-items: center;
    width: max-content;
    animation: logoSlide 22s linear infinite;
    will-change: transform;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes logoSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 110px;
    padding: 8px 32px;
}

.logo-item img {
    max-height: 72px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

/* Trust badges inside trust section (different from logo-item above) */
.trust-logo-item {
    font-size: 16px;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
    cursor: default;
}

.trust-logo-item:hover {
    color: #475569;
}

/* Responsive logo track */
@media (max-width: 768px) {
    .partners-inner {
        padding: 0 20px;
    }

    .logo-track {
        gap: 36px;
        animation-duration: 18s;
    }

    .logo-item img {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .logo-track {
        gap: 28px;
        animation-duration: 15s;
    }

    .logo-item img {
        max-height: 64px;
    }
}

/* ==============================
   ANIMATIONS
================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* ==============================
   PRICING SECTION
================================ */
.premium-pricing {
    background-color: #f8fafc;
    padding: 100px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.pricing-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 14px;
    line-height: 1.2;
}

.pricing-header p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: center;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 38px 28px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.04);
    z-index: 2;
    box-shadow: 0 20px 25px -5px rgba(29, 78, 216, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-red);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 26px;
}

.pricing-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.pricing-card-header p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.pricing-price {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.price-old {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.price-old .strike {
    font-size: 15px;
    color: #94a3b8;
    text-decoration: line-through;
}

.discount-badge {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 5px;
}

.price-new {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--primary-blue);
}

.price-new .currency {
    font-size: 15px;
    font-weight: 700;
    margin-top: 5px;
    margin-right: 4px;
}

.price-new .amount {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 13px 20px;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    background-color: transparent;
    margin-bottom: 26px;
}

.pricing-btn:hover {
    background-color: #f8fafc;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.pricing-btn.btn-primary {
    background-color: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.pricing-btn.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    color: #ffffff;
}

.pricing-features {
    flex-grow: 1;
}

.pricing-features h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.5;
}

.pricing-features li i {
    color: #10b981;
    font-size: 13px;
    margin-top: 3px;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ==============================
   TRUST SECTION
================================ */
.trust-section {
    background-color: #ffffff;
    padding: 80px 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 36px 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 28px;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
    line-height: 1;
}

.metric-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* TESTIMONIALS GRID — FIX: responsive stacking */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.08);
}

.testimonial-card .stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.testimonial-card .feedback {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eff6ff;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 2px;
}

.client-info .client-role {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.client-info .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #10b981;
    margin-top: 3px;
    font-weight: 600;
}

/* Trust badges */
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-highlight {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: #eff6ff;
    padding: 14px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.trust-highlight p {
    font-size: 14px;
    color: #1e3a8a;
    font-weight: 500;
    margin: 0;
}

/* TESTIMONIALS RESPONSIVE — FIX: proper stacking */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    /* On mobile: horizontal scroll cards */
    .testimonials-grid {
        grid-template-columns: unset;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 280px;
    }

    .trust-section {
        padding: 56px 20px;
    }

    .trust-metrics {
        padding: 28px 16px;
    }

    .metric-value {
        font-size: 28px;
    }
}




/* ==============================
   BUSINESS ADVISORY SECTION
================================ */
.business-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.geo-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.shape-green,
.shape-teal {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}
.shape-green {
    width: 280px;
    height: 280px;
    background: #10b981;
    bottom: -40px;
    right: 10%;
}
.shape-teal {
    width: 360px;
    height: 360px;
    background: #0ea5e9;
    top: 40px;
    right: 30%;
}
.business-content {
    position: relative;
    z-index: 2;
}
.business-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 20px;
}
.business-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}
.business-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.business-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: unset;
    border-radius: 12px;
}
@media (max-width: 900px) {
    .business-section {
        grid-template-columns: 1fr;
        padding: 70px 24px;
        gap: 40px;
        text-align: center;
    }
    .shape-teal,
    .shape-green {
        display: none;
    }
}

/* ==============================
   BENEFITS SECTION
================================ */
.benefits-section {
    background-color: #ffffff;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 100px 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    overflow: hidden;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
    z-index: 0;
}

.benefits-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.benefits-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefits-header {
    margin-bottom: 40px;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    background: rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(29, 78, 216, 0.15);
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.benefits-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    margin-right: 8px;
}

.benefits-header h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.benefits-header p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(29, 78, 216, 0.12);
}

.benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    background: rgba(29, 78, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--primary-blue);
    color: #fff;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.benefits-right {
    flex: 1;
    position: relative;
    border-radius: 20px;
}

.benefits-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
}

.benefits-slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.benefits-slider-nav .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefits-slider-nav .dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .benefits-container {
        flex-direction: column;
    }

    .benefits-right {
        display: none;
    }
}

@media (max-width: 640px) {
    .benefits-section {
        padding: 70px 20px;
    }

    .benefits-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 14px;
        grid-template-columns: unset;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .benefits-grid::-webkit-scrollbar {
        display: none;
    }

    .benefit-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
        min-width: 240px;
    }

    .benefits-slider-nav {
        display: flex;
    }
}

@media (max-width: 768px) {
  .benefits-section {
    display: none;
  }
}

/* ==============================
   CONTACT SECTION
================================ */
.contact-section {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 100px 24px;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1/1;
    border-radius: 20px;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 600px;
}

.contact-form-wrapper h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-form-wrapper p {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    width: 100%;
}

.form-row.split {
    display: flex;
    gap: 18px;
}

.form-group {
    width: 100%;
}

.form-row.split .form-group {
    flex: 1;
    min-width: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    color: #0f172a;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-submit {
    background: #3b82f6;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 17px 28px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.contact-submit:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.contact-form-message {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    display: none;
}

.contact-form-message.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.contact-form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .contact-section {
        padding: 64px 20px;
    }

    .form-row.split {
        flex-direction: column;
        gap: 18px;
    }
}

/* ==============================
   TOAST NOTIFICATION
================================ */
.toast-notification {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: #fff;
    border-radius: 12px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 500px;
    width: 90%;
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
}

.toast-notification.toast-success {
    border-left: 4px solid #22c55e;
}

.toast-notification.toast-success .toast-icon {
    color: #22c55e;
}

.toast-notification.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-notification.toast-error .toast-icon {
    color: #ef4444;
}

/* ==============================
   FOOTER
================================ */
.premium-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 24px 20px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 56px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background-color: #1d4ed8;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-logo h2 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}

.footer-logo span {
    color: #1d4ed8;
    font-weight: 400;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-socials a svg {
    width: 16px;
    height: 16px;
}

.footer-socials a:hover {
    background-color: #1d4ed8;
    transform: translateY(-4px);
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: inline-block;
}

.links-col ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-list li i {
    color: #1d4ed8;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-trust-line {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: rgba(29, 78, 216, 0.1);
    border: 1px solid rgba(29, 78, 216, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
}

.footer-trust-line i {
    color: #ef4444;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    color: #94a3b8;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .premium-footer {
        padding: 56px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-desc {
        margin: 0 auto 20px;
    }

    .footer-socials {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-trust-line {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* ==============================
   FLOATING BUTTONS
================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background-color: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 500;
    transition: all var(--transition-speed) ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.scroll-to-top {
    position: fixed;
    bottom: -60px;
    right: 28px;
    width: 44px;
    height: 44px;
    background-color: #1d4ed8;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
}

.scroll-to-top.show {
    bottom: 90px;
}

.scroll-to-top:hover {
    background-color: #2563eb;
    transform: translateY(-4px);
}

/* POPUP */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 14px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background-color: #1e3a8a;
    width: 100%;
    max-width: 820px;
    max-height: min(92vh, 760px);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-overlay.show .popup-box {
    transform: scale(1);
}

.popup-left {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-right {
    flex: 1.2;
    padding: 50px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    touch-action: manipulation;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.popup-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.popup-right h2 span,
.popup-right p span {
    color: #f97316;
    font-weight: 700;
}

.popup-right p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.5;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.popup-input-group {
    width: 100%;
}

.popup-input-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    transition: background 0.2s ease;
}

.popup-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.popup-input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.35);
}

.popup-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    touch-action: manipulation;
    box-sizing: border-box;
}

.popup-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #fb923c, #f97316);
}

/* ── Tablet (641px – 900px) ─────────────────── */
@media (max-width: 900px) and (min-width: 641px) {
    .popup-box {
        max-width: 680px;
    }

    .popup-right {
        padding: 36px 28px;
    }

    .popup-left {
        min-height: 260px;
    }
}

/* ── Mobile (≤ 640px) ────────────────────────── */
@media (max-width: 640px) {
    .popup-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .popup-box {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 20px 20px 0 0;
        transform: translateY(30px) scale(1);
    }

    .popup-overlay.show .popup-box {
        transform: translateY(0) scale(1);
    }

    .popup-left {
        height: 170px;
        min-height: unset;
        flex: none;
    }

    .popup-right {
        flex: none;
        padding: 30px 22px 28px;
        text-align: center;
        overflow-y: visible;
    }

    .popup-right h2 {
        font-size: 22px;
    }

    .popup-right p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .popup-input-group input {
        font-size: 16px; /* prevents iOS zoom */
        min-height: 50px;
        padding: 14px 16px;
    }

    .popup-btn {
        min-height: 50px;
        font-size: 14px;
    }

    .popup-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        font-size: 20px;
    }
}

/* ── Extra-small phones (≤ 400px) ──────────── */
@media (max-width: 400px) {
    .popup-left {
        height: 130px;
    }

    .popup-right {
        padding: 24px 16px 22px;
    }

    .popup-right h2 {
        font-size: 20px;
    }

    .popup-right p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .popup-input-group input {
        padding: 12px 14px;
    }

    .popup-btn {
        font-size: 13px;
        letter-spacing: 0.5px;
        padding: 14px;
    }
}