/* ===== JUSTLEAD DIGITAL MARKETING — THEME ===== */
:root {
    --navy: #0b1f3d;
    --navy-soft: #1a3358;
    --blue: #1065b7;
    --blue-dark: #0a4b8c;
    --cyan: #12b8c4;
    --grad: linear-gradient(135deg, #1065b7, #12b8c4);
    --bg: #ffffff;
    --bg-soft: #f5f8fc;
    --border: #e6ebf2;
    --text: #3d4a5c;
    --text-light: #6b7686;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(11, 31, 61, 0.08);
    --shadow-lg: 0 25px 60px rgba(11, 31, 61, 0.14);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    width: min(90%, 1200px);
    margin-inline: auto;
}
.section {
    padding: 100px 0;
}
.section.bg-soft {
    background: var(--bg-soft);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.preloader .spinner {
    width: 54px;
    height: 54px;
    border: 3px solid rgba(16, 101, 183, 0.15);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #eef1f5;
    border-bottom: 1px solid #dde3ea;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.header.is-scrolled {
    box-shadow: 0 2px 20px rgba(11, 31, 61, 0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 44px;
    width: auto;
}
.nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    gap: 34px;
}
.nav-link {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
}
.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}
.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
}
.nav-close,
.nav-overlay {
    display: none;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 8px 20px rgba(16, 101, 183, 0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(16, 101, 183, 0.35);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
}
.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-3px);
}
.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}
.btn-link {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s ease, color 0.25s ease;
}
.btn-link:hover {
    gap: 13px;
    color: var(--cyan);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 165px 0 90px;
    background: radial-gradient(circle at 15% 20%, rgba(16, 101, 183, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 85% 0%, rgba(18, 184, 196, 0.08) 0%, transparent 45%),
                var(--bg);
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 101, 183, 0.08);
    color: var(--blue);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 26px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
.hero h1 .highlight {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 0 auto 34px;
    max-width: 640px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ===== FEATURE BLURBS (3-up under hero) ===== */
.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}
.feature-blurb {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 30px;
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    text-align: center;
}
.feature-blurb:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 101, 183, 0.25);
}
.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: var(--grad);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    transition: transform 0.35s ease;
}
.feature-blurb:hover .feature-icon {
    transform: scale(1.12) rotate(-6deg);
}
.feature-blurb h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    font-size: 1.15rem;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.feature-blurb p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 55px;
}
.eyebrow {
    display: inline-block;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}
.section-title h2 .highlight {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title p {
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== STAT BAND (dark, full-width) ===== */
.stat-band {
    background: var(--navy);
    background-image: radial-gradient(circle at 20% 20%, rgba(16, 101, 183, 0.35), transparent 45%),
                       radial-gradient(circle at 80% 80%, rgba(18, 184, 196, 0.3), transparent 45%);
    border-radius: 24px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}
.stat-band-content h2 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}
.stat-band-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
}
.stat-band-numbers {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.big-stat {
    text-align: center;
}
.big-stat .val {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.big-stat .val .unit {
    font-size: 1.6rem;
    color: var(--cyan);
}
.big-stat .lbl {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ===== NATURE OF BUSINESS (4-up) ===== */
.nature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.nature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.nature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 101, 183, 0.25);
}
.nature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    transition: transform 0.35s ease;
}
.nature-card:hover .nature-icon {
    transform: scale(1.15) rotate(-6deg);
}
.nature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.nature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== PRICING / PACKAGES ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 101, 183, 0.25);
}
.pricing-card.featured {
    border: 2px solid var(--blue);
    box-shadow: var(--shadow-lg);
}
.pricing-most-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(16, 101, 183, 0.35);
}
.pricing-badge {
    display: inline-block;
    background: var(--bg-soft);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 7px;
    margin-bottom: 14px;
    align-self: flex-start;
}
.pricing-card.featured .pricing-badge {
    background: var(--grad);
    color: #fff;
}
.pricing-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.65rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.pricing-gst-note {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.pricing-price .currency {
    font-size: 1rem;
    vertical-align: top;
    margin-right: 1px;
}
.pricing-price .period {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.pf-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}
.pf-icon.wa {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}
.pricing-features strong {
    display: block;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
}
.pricing-features small {
    display: block;
    color: var(--text-light);
    font-size: 0.72rem;
    margin-top: 2px;
    line-height: 1.3;
}
.pricing-card .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}
.pricing-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-trust-bar {
    margin-top: 50px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pricing-trust-bar > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}
.pricing-trust-bar i {
    font-size: 1.4rem;
    color: var(--blue);
}

/* ===== NUMBERED SERVICES (2x3) ===== */
.numbered-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.numbered-card {
    background: #fff;
    padding: 44px 40px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.numbered-card:hover {
    background: var(--bg-soft);
    box-shadow: inset 4px 0 0 0 var(--cyan);
}
.numbered-card .num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 16px;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}
.numbered-card:hover .num {
    color: var(--cyan);
    transform: scale(1.15);
}
.numbered-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.numbered-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

/* legacy service-card (services page reuses) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px 34px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 101, 183, 0.25);
}
.service-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    background: var(--grad);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    transition: transform 0.35s ease;
}
.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-6deg);
}
.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}
.service-card ul li {
    color: var(--text-light) !important;
}
.service-card ul li::before {
    content: '✓';
    color: var(--blue);
    font-weight: 700;
    margin-right: 8px;
}

/* ===== PROMO / CTA TEXT BLOCK ===== */
.promo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.promo-split h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.7rem, 3.6vw, 2.3rem);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.3;
}
.promo-split .promo-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.02rem;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.about-image::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: var(--grad);
    border-radius: 26px;
    z-index: -1;
    filter: blur(24px);
    opacity: 0.35;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Circular CMD/leader portrait — glow wrapper is separate from the
   clipped circle so the blur halo isn't cut off at the frame edge. */
.cmd-photo-wrap {
    position: relative;
    width: 280px;
    max-width: 100%;
    margin: 0 auto;
}
.cmd-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -18px;
    background: var(--grad);
    border-radius: 50%;
    z-index: -1;
    filter: blur(30px);
    opacity: 0.4;
}
.cmd-photo {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 15px 40px rgba(11, 31, 61, 0.15);
}
.cmd-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}
.about-content h2 .highlight {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 18px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.stat-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    text-align: center;
}
.stat-card .stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
}
.stat-card .stat-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== APPROACH (4-step) ===== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.approach-step {
    position: relative;
    padding-top: 10px;
}
.approach-step .step-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    display: block;
}
.approach-step h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.approach-step p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-soft);
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.brand-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 101, 183, 0.3);
}
.brand-card i {
    display: block;
    font-size: 1.7rem;
    margin-bottom: 12px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.35s ease;
}
.brand-card:hover i {
    transform: scale(1.15);
}
.brand-card span {
    display: block;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.3;
}
.testimonial-slider {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.testimonial {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 55px 50px;
    box-shadow: var(--shadow);
}
.testimonial-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 30px;
    position: relative;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.author-info {
    text-align: left;
}
.author-info h4 {
    color: var(--navy);
    font-weight: 600;
}
.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #0b1f3d 0%, #0f3d6e 40%, #1065b7 75%, #12b8c4 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 90px 0;
    border-radius: 0;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
}
.cta .container {
    position: relative;
    z-index: 1;
}
.cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: 34px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta .btn-primary {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.cta .btn-primary:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info h3 {
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-item i {
    color: var(--blue);
    font-size: 1.2rem;
    margin-top: 3px;
}
.contact-item .info h4 {
    color: var(--navy);
    font-weight: 600;
}
.contact-item .info p {
    color: var(--text-light);
    font-size: 0.95rem;
}
.office-list {
    margin-top: 10px;
    display: grid;
    gap: 14px;
}
.office-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 22px;
}
.office-card h4 {
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.office-card p {
    color: var(--text-light);
    font-size: 0.88rem;
}
.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(16, 101, 183, 0.1);
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
.w-100 { width: 100%; }

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.blog-img {
    height: 200px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
    transform: scale(1.08);
}
.blog-content {
    padding: 26px;
}
.blog-content .blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 14px;
}
.blog-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}
.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
}
.portfolio-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.portfolio-cover {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.portfolio-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
}
.portfolio-cover i {
    font-size: 3.4rem;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-cover i {
    transform: scale(1.15) rotate(-6deg);
}
.pc-1 { background: linear-gradient(135deg, #1065b7, #12b8c4); }
.pc-2 { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.pc-3 { background: linear-gradient(135deg, #db2777, #7c3aed); }
.pc-4 { background: linear-gradient(135deg, #0d9488, #16a34a); }
.pc-5 { background: linear-gradient(135deg, #d97706, #db2777); }
.pc-6 { background: linear-gradient(135deg, #16a34a, #0891b2); }
.portfolio-content {
    padding: 26px;
}
.portfolio-content h3 {
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.portfolio-content .portfolio-category {
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 15px;
    display: block;
}
.portfolio-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}
.portfolio-result {
    display: flex;
    gap: 24px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.result-item .num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
}
.result-item .label {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ===== OUR PROCESS (9-step) ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.process-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.process-icon-wrap {
    position: relative;
    width: 56px;
    margin-bottom: 18px;
}
.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    transition: transform 0.35s ease;
}
.process-card:hover .process-icon {
    transform: scale(1.1) rotate(-4deg);
}
.process-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.process-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.process-card p {
    color: var(--text-light);
    font-size: 0.88rem;
}
.process-icon-1 { background: #1065b7; }
.process-icon-2 { background: #16a34a; }
.process-icon-3 { background: #f59e0b; }
.process-icon-4 { background: #db2777; }
.process-icon-5 { background: #7c3aed; }
.process-icon-6 { background: #0d9488; }
.process-icon-7 { background: #0ea5e9; }
.process-icon-8 { background: #22c55e; }
.process-icon-9 { background: #d97706; }

/* ===== COMPLIMENTARY CRM ===== */
.crm-subhead {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 50px 0 24px;
}
.crm-subhead:first-of-type {
    margin-top: 0;
}
.crm-subhead h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}
.crm-subhead-line {
    flex: 1;
    height: 2px;
    background: var(--border);
}
.crm-subhead-green .crm-subhead-line { background: linear-gradient(90deg, #16a34a, transparent); }
.crm-subhead-purple .crm-subhead-line { background: linear-gradient(90deg, #7c3aed, transparent); }
.crm-subhead-teal .crm-subhead-line { background: linear-gradient(90deg, #0d9488, transparent); }
.crm-subhead-amber .crm-subhead-line { background: linear-gradient(90deg, #d97706, transparent); }

.crm-grid {
    display: grid;
    gap: 22px;
}
.crm-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.crm-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.crm-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.crm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 101, 183, 0.25);
}
.crm-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.35s ease;
}
.crm-card:hover .crm-icon {
    transform: scale(1.15) rotate(-6deg);
}
.crm-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}
.crm-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}
.crm-icon-mint   { background: rgba(22, 163, 74, 0.12);  color: #16a34a; }
.crm-icon-blue   { background: rgba(37, 99, 235, 0.12);  color: #2563eb; }
.crm-icon-purple { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }
.crm-icon-amber  { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.crm-icon-cyan   { background: rgba(6, 182, 212, 0.12);  color: #0891b2; }
.crm-icon-teal   { background: rgba(13, 148, 136, 0.12); color: #0d9488; }
.crm-icon-pink   { background: rgba(219, 39, 119, 0.12); color: #db2777; }
.crm-icon-indigo { background: rgba(79, 70, 229, 0.12);  color: #4f46e5; }
.crm-icon-rose    { background: rgba(244, 63, 94, 0.12);  color: #e11d48; }
.crm-icon-orange  { background: rgba(249, 115, 22, 0.12); color: #ea580c; }
.crm-icon-slate   { background: rgba(100, 116, 139, 0.12); color: #475569; }
.crm-icon-fuchsia { background: rgba(217, 70, 239, 0.12); color: #c026d3; }
.crm-icon-lime    { background: rgba(132, 204, 22, 0.15); color: #4d7c0f; }

.crm-badge {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 12px;
    border-radius: 30px;
    background: rgba(217, 119, 6, 0.12);
    color: #b45309;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.team-img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(16, 101, 183, 0.25);
    transition: box-shadow 0.35s ease;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(85%);
    transform: scale(1);
    transition: filter 0.4s ease, transform 0.5s ease;
}
.team-card:hover .team-img {
    box-shadow: 0 0 0 3px rgba(18, 184, 196, 0.55);
}
.team-card:hover .team-img img {
    filter: grayscale(0%);
    transform: scale(1.15);
}
.team-card h3 {
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.team-card p {
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(16, 101, 183, 0.3);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.footer {
    background: #333333;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 18px;
}
.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 300px;
}
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: var(--grad);
    transform: translateY(-3px);
}
.footer-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 22px;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    transition: color 0.3s ease;
}
.footer-menu a:hover {
    color: var(--cyan);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer .contact-item i {
    color: var(--cyan);
    font-size: 1.05rem;
    margin-top: 3px;
}
.footer .contact-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 20px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom-inner p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: var(--cyan);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid,
    .promo-split {
        grid-template-columns: 1fr;
    }
    .feature-row,
    .numbered-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .nature-grid,
    .pricing-grid,
    .process-grid,
    .crm-grid-4,
    .crm-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-band {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .stat-band-numbers {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .nature-grid,
    .pricing-grid,
    .process-grid,
    .crm-grid-4,
    .crm-grid-3 {
        grid-template-columns: 1fr;
    }
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .crm-subhead {
        margin: 36px 0 18px;
    }
    .pricing-trust-bar {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        order: -1;
    }
    .header-cta {
        display: none;
    }
    .nav-toggle {
        display: flex;
        z-index: 1002;
        position: relative;
        transition: opacity 0.2s ease;
    }
    .nav.open ~ .nav-toggle {
        opacity: 0;
        pointer-events: none;
    }
    .nav-toggle span:nth-child(1) {
        transform-origin: center;
    }
    .nav-toggle span:nth-child(3) {
        transform-origin: center;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: min(300px, 80vw);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding-top: 90px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 1001;
        overflow-y: auto;
    }
    .nav.open {
        right: 0;
    }
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-soft);
        color: var(--navy);
        font-size: 1.1rem;
        cursor: pointer;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(11, 31, 61, 0.5);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .nav-overlay.show {
        display: block;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 18px;
        padding: 0 30px;
    }
    .hero {
        padding: 130px 0 60px;
    }
    .testimonial {
        padding: 34px 26px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
