/* Anupalan — Premium Marketing UI (CA / CS / Compliance) */
:root {
    --ap-navy: #0a1628;
    --ap-navy-mid: #0f2744;
    --ap-navy-light: #1a3a5c;
    --ap-teal: #14b8a6;
    --ap-teal-bright: #2dd4bf;
    --ap-teal-dark: #0d9488;
    --ap-indigo: #6366f1;
    --ap-gold: #f59e0b;
    --ap-gold-light: #fcd34d;
    --ap-slate: #64748b;
    --ap-slate-light: #94a3b8;
    --ap-bg: #f8fafc;
    --ap-bg-mesh: #eef2ff;
    --ap-white: #ffffff;
    --ap-border: rgba(15, 39, 68, 0.08);
    --ap-shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --ap-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
    --ap-shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.14);
    --ap-shadow-glow: 0 0 60px rgba(20, 184, 166, 0.25);
    --ap-radius: 16px;
    --ap-radius-lg: 24px;
    --ap-radius-xl: 32px;
    --ap-font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ap-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.ap-marketing-site {
    font-family: var(--ap-font);
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
}

.ap-marketing-site .text-color-primary,
.ap-marketing-site .mark-text {
    background: linear-gradient(135deg, var(--ap-teal) 0%, var(--ap-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Header (glass) ─── */
.ap-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ap-border);
    transition: box-shadow 0.3s var(--ap-ease);
}

.ap-header.scrolled {
    box-shadow: var(--ap-shadow);
    background: rgba(255, 255, 255, 0.95);
}

.ap-header .header__logo img {
    max-height: 44px;
    width: auto;
    transition: transform 0.3s var(--ap-ease);
}

.ap-header .header__logo a:hover img {
    transform: scale(1.02);
}

.ap-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ap-nav a {
    color: var(--ap-navy-mid);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s var(--ap-ease);
    position: relative;
}

.ap-nav a:hover {
    color: var(--ap-teal-dark);
    background: rgba(20, 184, 166, 0.08);
}

.ap-nav a.active {
    color: var(--ap-teal-dark);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
}

.ap-header-inner {
    gap: 16px;
}

.ap-header-actions {
    gap: 10px;
    flex-shrink: 0;
    margin-left: 8px;
}

.ap-header .ap-btn-header {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    line-height: 1.2;
    white-space: nowrap;
    min-height: 42px;
}

.ap-header .ap-btn-header-outline {
    background: var(--ap-white);
    color: var(--ap-navy) !important;
    border: 1.5px solid rgba(15, 39, 68, 0.14);
    box-shadow: 0 1px 3px rgba(10, 22, 40, 0.06);
}

.ap-header .ap-btn-header-outline:hover {
    border-color: var(--ap-teal);
    color: var(--ap-teal-dark) !important;
    background: rgba(20, 184, 166, 0.06);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.08);
}

.ap-header .ap-btn-header-primary {
    background: linear-gradient(135deg, var(--ap-teal-bright) 0%, var(--ap-teal) 45%, var(--ap-teal-dark) 100%);
    color: var(--ap-white) !important;
    border: none;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.ap-header .ap-btn-header-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.5), var(--ap-shadow-glow);
    color: var(--ap-white) !important;
}

@media (max-width: 1199px) {
    .ap-header-actions .ap-btn-header {
        padding: 9px 16px;
        font-size: 13px;
        min-height: 38px;
    }
}

/* Buttons */
.ap-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.3s var(--ap-ease);
    letter-spacing: 0.01em;
}

.ap-btn-primary {
    background: linear-gradient(135deg, var(--ap-teal) 0%, var(--ap-teal-dark) 55%, #0891b2 100%);
    color: var(--ap-white) !important;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ap-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(20, 184, 166, 0.45), var(--ap-shadow-glow);
    color: var(--ap-white) !important;
}

.ap-btn-outline {
    background: var(--ap-white);
    color: var(--ap-navy) !important;
    border: 2px solid rgba(15, 39, 68, 0.12);
    box-shadow: var(--ap-shadow-sm);
}

.ap-btn-outline:hover {
    border-color: var(--ap-teal);
    color: var(--ap-teal-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--ap-shadow);
}

.ap-btn-white {
    background: var(--ap-white);
    color: var(--ap-navy) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.ap-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    color: var(--ap-navy) !important;
}

.ap-btn-ghost-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ap-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.ap-btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--ap-white) !important;
    transform: translateY(-2px);
}

/* ─── Hero ─── */
.ap-hero {
    position: relative;
    padding: 100px 0 120px;
    color: var(--ap-white);
    overflow: hidden;
    background: var(--ap-navy);
}

.ap-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(20, 184, 166, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(99, 102, 241, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse 50% 40% at 90% 90%, rgba(245, 158, 11, 0.12) 0%, transparent 40%),
        linear-gradient(160deg, var(--ap-navy) 0%, var(--ap-navy-mid) 40%, #0c4a6e 100%);
    z-index: 0;
}

.ap-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
    z-index: 1;
}

.ap-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: ap-float 8s ease-in-out infinite;
    z-index: 1;
}

.ap-hero-orb-1 {
    width: 320px;
    height: 320px;
    background: var(--ap-teal);
    top: -80px;
    right: 10%;
    animation-delay: 0s;
}

.ap-hero-orb-2 {
    width: 200px;
    height: 200px;
    background: var(--ap-indigo);
    bottom: 10%;
    left: 5%;
    animation-delay: -3s;
}

@keyframes ap-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -20px) scale(1.05); }
}

.ap-hero .container {
    position: relative;
    z-index: 2;
}

.ap-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.ap-hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--ap-teal-bright);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--ap-teal-bright);
    animation: ap-pulse 2s ease infinite;
}

@keyframes ap-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.ap-hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--ap-white);
    letter-spacing: -0.02em;
}

.ap-hero h1 span {
    background: linear-gradient(135deg, var(--ap-gold-light) 0%, var(--ap-teal-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ap-hero-lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 500;
}

.ap-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.ap-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ap-hero-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ap-radius);
    padding: 20px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s var(--ap-ease), background 0.3s;
}

.ap-hero-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.ap-hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ap-gold-light), var(--ap-teal-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.ap-hero-stat span {
    font-size: 0.8125rem;
    opacity: 0.8;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* Hero dashboard mockup */
.ap-hero-visual {
    position: relative;
    animation: ap-float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.ap-dashboard-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--ap-radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
    color: var(--ap-navy);
}

.ap-dashboard-top {
    background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--ap-border);
}

.ap-dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ap-dashboard-dot:nth-child(1) { background: #ef4444; }
.ap-dashboard-dot:nth-child(2) { background: #f59e0b; }
.ap-dashboard-dot:nth-child(3) { background: #22c55e; }

.ap-dashboard-body {
    padding: 24px;
}

.ap-dashboard-body h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 16px;
}

.ap-dash-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--ap-bg);
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ap-navy-mid);
    transition: background 0.2s;
}

.ap-dash-item:hover {
    background: rgba(20, 184, 166, 0.08);
}

.ap-dash-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(99, 102, 241, 0.1));
    color: var(--ap-teal-dark);
    font-size: 14px;
}

.ap-dash-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(20, 184, 166, 0.15);
    color: var(--ap-teal-dark);
}

/* Trust bar */
.ap-trust-bar {
    background: var(--ap-white);
    padding: 28px 0;
    border-bottom: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-sm);
}

.ap-trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
}

.ap-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ap-navy-mid);
    padding: 12px 20px;
    background: var(--ap-bg);
    border-radius: 100px;
    border: 1px solid var(--ap-border);
    transition: all 0.3s var(--ap-ease);
}

.ap-trust-item:hover {
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: var(--ap-shadow);
    transform: translateY(-2px);
}

.ap-trust-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ap-teal), var(--ap-teal-dark));
    color: white;
    font-size: 16px;
}

/* Sections */
.ap-section {
    padding: 100px 0;
    position: relative;
}

.ap-section-alt {
    background: linear-gradient(180deg, var(--ap-bg) 0%, var(--ap-white) 100%);
}

.ap-section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ap-border), transparent);
}

.ap-section-title {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.ap-section-title .ap-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ap-teal-dark);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 100px;
}

.ap-section-title h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ap-section-title p {
    color: var(--ap-slate);
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 0;
}

/* About block */
.ap-about-panel {
    background: var(--ap-white);
    border-radius: var(--ap-radius-xl);
    padding: 48px;
    box-shadow: var(--ap-shadow-lg);
    border: 1px solid var(--ap-border);
    position: relative;
    overflow: hidden;
}

.ap-about-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-teal), var(--ap-indigo), var(--ap-gold));
}

.ap-stat-highlight {
    background: linear-gradient(135deg, var(--ap-navy) 0%, var(--ap-navy-mid) 100%);
    color: white;
    border-radius: var(--ap-radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--ap-shadow-lg);
}

.ap-stat-highlight .mark-text,
.ap-stat-highlight h3 {
    color: var(--ap-white) !important;
    -webkit-text-fill-color: var(--ap-white);
    background: none;
}

.ap-stat-highlight .mark-text {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

/* Feature cards — bento style */
.ap-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .ap-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ap-feature-grid {
        grid-template-columns: 1fr;
    }
}

.ap-feature-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius-lg);
    padding: 32px;
    border: 1px solid var(--ap-border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ap-ease);
    height: 100%;
}

.ap-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ap-teal), var(--ap-indigo));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ap-ease);
}

.ap-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ap-shadow-lg);
    border-color: rgba(20, 184, 166, 0.2);
}

.ap-feature-card:hover::before {
    transform: scaleX(1);
}

.ap-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(99, 102, 241, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 22px;
    color: var(--ap-teal-dark);
    transition: transform 0.4s var(--ap-ease);
}

.ap-feature-card:hover .ap-feature-icon {
    transform: scale(1.08) rotate(-3deg);
    background: linear-gradient(135deg, var(--ap-teal) 0%, var(--ap-indigo) 100%);
    color: white;
}

.ap-feature-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.ap-feature-card p {
    color: var(--ap-slate);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

.ap-feature-card-featured {
    background: linear-gradient(145deg, var(--ap-navy) 0%, var(--ap-navy-mid) 100%);
    border: none;
    color: white;
}

@media (min-width: 992px) {
    .ap-feature-card-featured {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 28px 40px;
        align-items: center;
        padding: 40px 48px;
    }
    .ap-feature-card-featured .ap-feature-icon {
        margin-bottom: 0;
    }
}

.ap-feature-card-featured h3,
.ap-feature-card-featured p {
    color: rgba(255, 255, 255, 0.95);
}

.ap-feature-card-featured p {
    opacity: 0.85;
}

.ap-feature-card-featured .ap-feature-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ap-gold-light);
}

/* Platform banner (Why Choose Us / featured highlight) */
.ap-platform-banner {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    gap: 20px 32px;
    align-items: start;
    padding: 40px 44px;
    background: linear-gradient(145deg, #060d18 0%, var(--ap-navy) 42%, var(--ap-navy-mid) 100%);
    border-radius: var(--ap-radius-xl);
    box-shadow: var(--ap-shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.ap-platform-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(20, 184, 166, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.ap-platform-banner-icon {
    grid-column: 1;
    grid-row: 1;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ap-teal-bright) 0%, var(--ap-teal) 40%, var(--ap-indigo) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--ap-white);
    box-shadow: 0 8px 28px rgba(20, 184, 166, 0.35);
    position: relative;
    z-index: 1;
}

.ap-platform-banner-title {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: clamp(1.375rem, 2.8vw, 1.875rem);
    font-weight: 800;
    color: var(--ap-white);
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: right;
    align-self: center;
    position: relative;
    z-index: 1;
}

.ap-platform-banner-text {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    max-width: 640px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    z-index: 1;
}

.ap-why-intro {
    padding-top: 72px;
    padding-bottom: 48px;
}

.ap-why-hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ap-navy);
    margin: 12px 0 16px;
    line-height: 1.25;
}

.ap-why-hero-lead {
    color: var(--ap-slate);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin: 0;
}

.ap-why-video-card {
    display: block;
    position: relative;
    border-radius: var(--ap-radius-lg);
    overflow: hidden;
    box-shadow: var(--ap-shadow-lg);
    text-decoration: none !important;
}

.ap-why-video-card img {
    width: 100%;
    display: block;
    border-radius: var(--ap-radius-lg);
    transition: transform 0.4s var(--ap-ease);
}

.ap-why-video-card:hover img {
    transform: scale(1.03);
}

.ap-why-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 22, 40, 0.35);
    transition: background 0.3s ease;
}

.ap-why-video-play i {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ap-teal) 0%, var(--ap-teal-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 4px;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.5);
}

.ap-why-video-card:hover .ap-why-video-play {
    background: rgba(10, 22, 40, 0.45);
}

@media (max-width: 767px) {
    .ap-platform-banner {
        grid-template-columns: 56px 1fr;
        padding: 28px 24px;
        gap: 16px 20px;
    }

    .ap-platform-banner-icon {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
        border-radius: 14px;
    }

    .ap-platform-banner-title {
        text-align: left;
        font-size: 1.25rem;
        align-self: start;
    }

    .ap-platform-banner-text {
        font-size: 0.9375rem;
    }
}

/* Audience pills */
.ap-audience-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.ap-audience-pill {
    padding: 12px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ap-navy);
    background: var(--ap-white);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--ap-white), var(--ap-white)), linear-gradient(135deg, var(--ap-teal), var(--ap-indigo));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--ap-shadow-sm);
    transition: transform 0.3s var(--ap-ease);
}

.ap-audience-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--ap-shadow);
}

/* Glass highlight card */
.ap-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--ap-radius-xl);
    padding: 48px;
    box-shadow: var(--ap-shadow-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ap-glass-card .ap-feature-icon {
    margin: 0 auto 24px;
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
}

/* Steps */
.ap-steps-wrap {
    position: relative;
    padding: 20px 0;
}

.ap-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

@media (max-width: 767px) {
    .ap-steps {
        grid-template-columns: 1fr;
    }
}

.ap-step {
    text-align: center;
    padding: 36px 24px;
    background: var(--ap-white);
    border-radius: var(--ap-radius-lg);
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow);
    transition: all 0.35s var(--ap-ease);
    position: relative;
    z-index: 1;
}

.ap-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--ap-shadow-lg);
}

.ap-step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ap-teal), var(--ap-indigo));
    color: var(--ap-white);
    font-weight: 800;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

.ap-step h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 10px;
}

.ap-step p {
    font-size: 0.9rem;
    color: var(--ap-slate);
    margin: 0;
    line-height: 1.6;
}

/* Values slider */
.ap-marketing-site .carousel-slider {
    background: var(--ap-white);
    border: none;
    border-radius: var(--ap-radius-lg);
    padding: 36px 32px;
    box-shadow: var(--ap-shadow);
    border: 1px solid var(--ap-border);
    min-height: 200px;
    transition: box-shadow 0.3s;
}

.ap-marketing-site .carousel-slider:hover {
    box-shadow: var(--ap-shadow-lg);
}

.ap-marketing-site .carousel-slider .headeing {
    color: var(--ap-navy);
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.ap-marketing-site .carousel-slider .text {
    color: var(--ap-slate);
    line-height: 1.7;
}

/* Video block */
.ap-video-block {
    background: linear-gradient(135deg, var(--ap-navy-mid) 0%, #0c4a6e 100%);
    border-radius: var(--ap-radius-xl);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 15px;
}

.ap-video-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(20, 184, 166, 0.2), transparent 50%);
}

.ap-video-block h2 {
    color: white !important;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.ap-video-block p,
.ap-video-block .ap-btn {
    position: relative;
    z-index: 1;
}

/* Pricing */
.ap-pricing-wrap {
    background: linear-gradient(180deg, var(--ap-bg-mesh) 0%, var(--ap-white) 50%);
    padding: 100px 0;
}

.ap-marketing-site .pricing-table__inner {
    border-radius: var(--ap-radius-lg) !important;
    border: 1px solid var(--ap-border) !important;
    box-shadow: var(--ap-shadow) !important;
    overflow: hidden;
    transition: all 0.35s var(--ap-ease) !important;
    background: var(--ap-white) !important;
}

.ap-marketing-site .pricing-table__inner:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--ap-shadow-lg) !important;
    border-color: rgba(20, 184, 166, 0.25) !important;
}

.ap-marketing-site .pricing-table__header {
    background: linear-gradient(180deg, var(--ap-bg) 0%, var(--ap-white) 100%) !important;
}

.ap-marketing-site .ht-plans-menu .nav-link {
    border-radius: 100px !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
}

.ap-marketing-site .ht-plans-menu .nav-link.active {
    background: linear-gradient(135deg, var(--ap-teal), var(--ap-teal-dark)) !important;
    color: white !important;
}

/* Contact CTA */
.ap-contact-cta {
    background: linear-gradient(135deg, var(--ap-navy) 0%, var(--ap-navy-mid) 50%, #0c4a6e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ap-contact-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2), transparent 70%);
    top: -100px;
    right: -100px;
}

.ap-contact-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--ap-radius-lg);
    padding: 40px;
    backdrop-filter: blur(12px);
}

.ap-contact-panel a {
    color: var(--ap-teal-bright) !important;
    font-weight: 700;
}

/* Contact us page */
.ap-contact-intro {
    padding-top: 72px;
    padding-bottom: 40px;
}

.ap-contact-intro-panel {
    background: var(--ap-white);
    border-radius: var(--ap-radius-xl);
    padding: 48px 40px;
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-lg);
    position: relative;
    overflow: hidden;
}

.ap-contact-intro-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-teal), var(--ap-indigo), var(--ap-gold));
}

.ap-contact-intro-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ap-navy);
    margin: 12px 0 14px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.ap-contact-intro-lead {
    color: var(--ap-slate);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin: 0;
    max-width: 640px;
}

.ap-contact-main {
    padding-top: 24px;
    padding-bottom: 80px;
}

.ap-contact-info-card {
    background: linear-gradient(160deg, var(--ap-navy) 0%, var(--ap-navy-mid) 100%);
    color: var(--ap-white);
    border-radius: var(--ap-radius-xl);
    padding: 36px 32px;
    box-shadow: var(--ap-shadow-lg);
    height: 100%;
}

.ap-contact-info-head h2 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ap-white);
    margin-bottom: 6px;
    line-height: 1.35;
}

.ap-contact-cin {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 28px;
}

.ap-contact-info-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ap-teal-bright);
    margin-bottom: 12px;
}

.ap-contact-info-block p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 24px;
}

.ap-contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.ap-contact-info-tile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-decoration: none !important;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.ap-contact-info-tile:hover {
    background: rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.35);
}

.ap-contact-info-tile-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ap-teal-bright);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.ap-contact-info-tile-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
}

.ap-contact-info-tile-value {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ap-teal-bright);
    word-break: break-word;
}

.ap-contact-info-hours {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ap-contact-info-hours i {
    color: var(--ap-teal-bright);
    margin-top: 2px;
}

.ap-contact-form-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius-xl);
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-lg);
    overflow: hidden;
}

.ap-contact-form-card-head {
    padding: 36px 40px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, var(--ap-white) 100%);
    border-bottom: 1px solid var(--ap-border);
}

.ap-contact-form-card-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 8px;
}

.ap-contact-form-card-head p {
    color: var(--ap-slate);
    margin: 0;
    font-size: 0.9375rem;
}

.ap-contact-form-card form {
    padding: 32px 40px 40px;
}

.ap-contact-field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    margin-bottom: 20px;
}

.ap-contact-field {
    margin-bottom: 20px;
}

.ap-contact-field-grid .ap-contact-field {
    margin-bottom: 0;
}

.ap-contact-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ap-navy);
    margin-bottom: 8px;
}

.ap-contact-field label .req {
    color: #dc2626;
}

.ap-contact-field input,
.ap-contact-field textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9375rem;
    font-family: var(--ap-font);
    color: var(--ap-navy);
    background: var(--ap-bg);
    border: 1px solid var(--ap-border);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    resize: vertical;
}

.ap-contact-field input:focus,
.ap-contact-field textarea:focus {
    outline: none;
    border-color: var(--ap-teal);
    background: var(--ap-white);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.ap-contact-captcha label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ap-navy);
    margin-bottom: 12px;
}

.ap-contact-captcha-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.ap-contact-captcha-img {
    flex-shrink: 0;
    padding: 8px 12px;
    background: var(--ap-bg);
    border: 1px solid var(--ap-border);
    border-radius: 12px;
    line-height: 0;
}

.ap-contact-captcha-row input {
    flex: 1 1 180px;
    min-width: 160px;
    padding: 14px 16px;
    font-size: 0.9375rem;
    font-family: var(--ap-font);
    border: 1px solid var(--ap-border);
    border-radius: 12px;
    background: var(--ap-bg);
}

.ap-contact-captcha-row input:focus {
    outline: none;
    border-color: var(--ap-teal);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.ap-contact-captcha-hint {
    font-size: 0.8125rem;
    color: var(--ap-slate);
    margin: 10px 0 0;
}

.ap-contact-captcha-hint a {
    color: var(--ap-teal-dark);
    font-weight: 700;
}

.ap-contact-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
}

.ap-contact-form-hint {
    margin: 0;
    font-size: 0.875rem;
    color: var(--ap-slate);
}

.ap-contact-channels {
    padding-bottom: 100px;
}

.ap-contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ap-contact-channel-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-sm);
    height: 100%;
    transition: transform 0.35s var(--ap-ease), box-shadow 0.35s var(--ap-ease);
}

.ap-contact-channel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ap-shadow);
}

.ap-contact-channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ap-teal-dark);
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.ap-contact-channel-card h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 10px;
}

.ap-contact-channel-card p {
    color: var(--ap-slate);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.ap-contact-channel-card a {
    font-weight: 700;
    color: var(--ap-teal-dark) !important;
    font-size: 0.9375rem;
    word-break: break-word;
}

.ap-contact-channel-card a:hover {
    color: var(--ap-indigo) !important;
}

.ap-marketing-site .contact-us-section-wrappaer,
.ap-marketing-site .contact-us-info-wrappaer {
    display: none;
}

@media (max-width: 991px) {
    .ap-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .ap-contact-channels-grid {
        grid-template-columns: 1fr;
    }

    .ap-contact-field-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .ap-contact-intro-panel {
        padding: 32px 24px;
    }

    .ap-contact-form-card form,
    .ap-contact-form-card-head {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ap-contact-form-footer .ap-btn {
        width: 100%;
    }
}

/* Breadcrumb */
.ap-marketing-site .breadcrumb-area {
    background: linear-gradient(135deg, var(--ap-navy) 0%, var(--ap-navy-mid) 60%, #0c4a6e 100%) !important;
    padding: 72px 0 !important;
    position: relative;
    overflow: hidden;
}

.ap-marketing-site .breadcrumb-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(20, 184, 166, 0.2), transparent 50%);
}

.ap-marketing-site .breadcrumb_box {
    position: relative;
    z-index: 1;
}

.ap-marketing-site .breadcrumb-title {
    font-weight: 800 !important;
    font-size: 2.25rem !important;
    letter-spacing: -0.02em;
}

/* Footer */
.ap-footer {
    background: linear-gradient(180deg, var(--ap-navy) 0%, #060d18 100%);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    margin-top: 0;
}

.ap-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ap-teal), var(--ap-indigo), var(--ap-gold));
    z-index: 1;
}

.ap-footer-main {
    padding: 72px 0 48px;
    position: relative;
}

.ap-footer-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.ap-footer-tagline {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 340px;
}

.ap-footer-heading {
    color: var(--ap-white);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
}

.ap-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ap-footer-links li {
    margin-bottom: 12px;
}

.ap-footer-links li:last-child {
    margin-bottom: 0;
}

.ap-footer-links a,
.ap-footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s var(--ap-ease);
}

.ap-footer-links a:hover,
.ap-footer-contact-item a:hover {
    color: var(--ap-teal-bright);
}

.ap-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ap-footer-social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ap-white) !important;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s var(--ap-ease);
}

.ap-footer-social a:hover {
    background: linear-gradient(135deg, var(--ap-teal), var(--ap-teal-dark));
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.35);
}

/* Contact strip (above copyright bar) */
.ap-footer-contact-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    padding: 28px 0;
}

.ap-footer-contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px 32px;
    align-items: start;
}

@media (max-width: 991px) {
    .ap-footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.ap-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.ap-footer-contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.15);
    color: var(--ap-teal-bright);
    font-size: 15px;
}

.ap-footer-phone-sep {
    margin: 0 6px;
    opacity: 0.45;
}

/* Bottom bar */
.ap-footer-bottom {
    padding: 0;
    background: rgba(0, 0, 0, 0.35);
}

.ap-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    min-height: 72px;
}

.ap-footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.ap-footer-niche {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.ap-footer-niche-pill {
    display: inline-block;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    transition: all 0.25s var(--ap-ease);
}

.ap-footer-niche-pill:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.4);
    color: var(--ap-teal-bright);
}

@media (max-width: 767px) {
    .ap-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .ap-footer-niche {
        justify-content: center;
    }

    .ap-footer-main {
        padding: 56px 0 40px;
    }
}

/* CTA band (inner pages) */
.ap-cta-band {
    background: linear-gradient(135deg, var(--ap-teal) 0%, var(--ap-teal-dark) 50%, #0891b2 100%);
    color: var(--ap-white);
    padding: 72px 48px;
    text-align: center;
    border-radius: var(--ap-radius-xl);
    margin: 0 15px;
    box-shadow: var(--ap-shadow-lg), var(--ap-shadow-glow);
    position: relative;
    overflow: hidden;
}

.ap-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ap-cta-band h2 {
    color: var(--ap-white);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.ap-cta-band p {
    position: relative;
    z-index: 1;
}

.ap-cta-band-actions,
.ap-btn-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.ap-cta-band-actions {
    justify-content: center;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.ap-btn-row {
    justify-content: flex-start;
}

.ap-cta-band-actions .ap-btn,
.ap-btn-row .ap-btn {
    margin: 0 !important;
}

.ap-cta-band-actions .ap-btn {
    position: relative;
    z-index: 1;
}

/* Plan page — horizontal CTA banner */
.ap-plan-cta {
    position: relative;
    padding: 72px 0;
    background: linear-gradient(125deg, var(--ap-navy) 0%, var(--ap-navy-mid) 48%, #1e3a5f 100%);
    overflow: hidden;
}

.ap-plan-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 80% at 100% 50%, rgba(20, 184, 166, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 30% 50% at 0% 100%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.ap-plan-cta-map {
    position: absolute;
    top: 50%;
    right: -40px;
    width: min(520px, 55vw);
    height: 280px;
    transform: translateY(-50%);
    opacity: 0.35;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    mask-image: radial-gradient(ellipse 70% 80% at 70% 50%, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 50%, black 20%, transparent 72%);
}

.ap-plan-cta .container {
    z-index: 1;
}

.ap-plan-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px 40px;
}

.ap-plan-cta-content {
    flex: 1 1 420px;
    max-width: 720px;
}

.ap-plan-cta-title {
    margin: 0;
    font-size: clamp(1.375rem, 2.8vw, 1.875rem);
    font-weight: 800;
    color: var(--ap-white);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.ap-plan-cta-highlight {
    display: inline;
    background: linear-gradient(135deg, var(--ap-teal-bright) 0%, var(--ap-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ap-plan-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.ap-btn-navy {
    background: linear-gradient(135deg, var(--ap-navy-light) 0%, var(--ap-indigo) 100%);
    color: var(--ap-white) !important;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ap-btn-navy:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
    color: var(--ap-white) !important;
}

.ap-plan-cta-accent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-teal) 0%, var(--ap-indigo) 50%, var(--ap-gold) 100%);
}

@media (max-width: 991px) {
    .ap-plan-cta {
        padding: 56px 0;
    }

    .ap-plan-cta-row {
        flex-direction: column;
        text-align: center;
    }

    .ap-plan-cta-content {
        max-width: none;
    }

    .ap-plan-cta-actions {
        justify-content: center;
        width: 100%;
    }

    .ap-plan-cta-map {
        opacity: 0.2;
        right: -80px;
    }
}

@media (max-width: 575px) {
    .ap-plan-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .ap-plan-cta-actions .ap-btn {
        width: 100%;
    }
}

/* Partner with us page */
.ap-partner-intro {
    padding-top: 72px;
    padding-bottom: 48px;
}

.ap-partner-intro-panel {
    background: var(--ap-white);
    border-radius: var(--ap-radius-xl);
    padding: 48px 40px;
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-lg);
    position: relative;
    overflow: hidden;
}

.ap-partner-intro-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-teal), var(--ap-indigo), var(--ap-gold));
}

.ap-partner-intro-title {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 800;
    color: var(--ap-navy);
    margin: 12px 0 16px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.ap-partner-intro-lead {
    color: var(--ap-slate);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin: 0;
    max-width: 640px;
}

.ap-partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ap-partner-benefit-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-sm);
    height: 100%;
    transition: transform 0.35s var(--ap-ease), box-shadow 0.35s var(--ap-ease);
}

.ap-partner-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ap-shadow);
}

.ap-partner-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ap-teal-dark);
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.ap-partner-benefit-card h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 10px;
}

.ap-partner-benefit-card p {
    color: var(--ap-slate);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

.ap-partner-cta-strip {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(125deg, var(--ap-navy) 0%, var(--ap-navy-mid) 55%, #1e3a5f 100%);
    overflow: hidden;
}

.ap-partner-cta-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 32px;
    position: relative;
    z-index: 1;
}

.ap-partner-cta-strip-text h2 {
    color: var(--ap-white);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.ap-partner-cta-strip-text p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.6;
}

.ap-partner-cta-strip-accent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-teal), var(--ap-indigo), var(--ap-gold));
}

.ap-partner-apply {
    padding-bottom: 100px;
}

.ap-partner-sidebar {
    background: linear-gradient(160deg, var(--ap-navy) 0%, var(--ap-navy-mid) 100%);
    color: var(--ap-white);
    border-radius: var(--ap-radius-lg);
    padding: 32px 28px;
    position: sticky;
    top: 100px;
    box-shadow: var(--ap-shadow-lg);
}

.ap-partner-sidebar h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--ap-white);
}

.ap-partner-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.ap-partner-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ap-partner-steps li:last-child {
    border-bottom: none;
}

.ap-partner-steps li span {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(20, 184, 166, 0.25);
    color: var(--ap-teal-bright);
    font-weight: 800;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-partner-sidebar-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}

.ap-partner-sidebar-note i {
    color: var(--ap-teal-bright);
    margin-top: 2px;
}

.ap-partner-sidebar-contact {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.ap-partner-sidebar-contact a {
    color: var(--ap-teal-bright);
    font-weight: 700;
}

.ap-partner-form-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius-xl);
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-lg);
    overflow: hidden;
}

.ap-partner-form-card-head {
    padding: 36px 40px 28px;
    background: linear-gradient(180deg, #f8fafc 0%, var(--ap-white) 100%);
    border-bottom: 1px solid var(--ap-border);
}

.ap-partner-form-card-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 8px;
}

.ap-partner-form-card-head p {
    color: var(--ap-slate);
    margin: 0;
    font-size: 0.9375rem;
}

.ap-partner-form-card form {
    padding: 32px 40px 40px;
}

.ap-partner-form-section {
    border: none;
    margin: 0 0 32px;
    padding: 0;
}

.ap-partner-form-section-last {
    margin-bottom: 8px;
}

.ap-partner-form-section legend {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ap-teal-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(20, 184, 166, 0.2);
    width: 100%;
}

.ap-partner-form-section legend i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.ap-partner-field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.ap-partner-field-full {
    grid-column: 1 / -1;
}

.ap-partner-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ap-navy);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.ap-partner-field label .req {
    color: #dc2626;
}

.ap-partner-field input {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9375rem;
    font-family: var(--ap-font);
    color: var(--ap-navy);
    background: var(--ap-bg);
    border: 1px solid var(--ap-border);
    border-radius: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ap-partner-field input::placeholder {
    color: var(--ap-slate-light);
}

.ap-partner-field input:focus {
    outline: none;
    border-color: var(--ap-teal);
    background: var(--ap-white);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.ap-partner-field.has-error input {
    border-color: #dc2626;
    background: #fef2f2;
}

.ap-partner-field .error {
    display: block;
    font-size: 0.8125rem;
    color: #dc2626;
    margin-top: 6px;
}

.ap-partner-form-footer {
    padding-top: 24px;
    border-top: 1px solid var(--ap-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.ap-partner-form-hint {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--ap-slate);
    flex: 1 1 200px;
}

.ap-marketing-site .ap-partner-apply .error {
    color: #dc2626;
}

@media (max-width: 1199px) {
    .ap-partner-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .ap-partner-sidebar {
        position: static;
    }

    .ap-partner-cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .ap-partner-cta-strip-text p {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .ap-partner-intro-panel {
        padding: 32px 24px;
    }

    .ap-partner-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ap-partner-field-grid {
        grid-template-columns: 1fr;
    }

    .ap-partner-form-card form,
    .ap-partner-form-card-head {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ap-partner-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .ap-partner-form-footer .ap-btn {
        width: 100%;
    }
}

.ap-marketing-site .processing-contact-us-bg,
.ap-marketing-site .contact-us-section-wrappaer.processing-contact-us-bg {
    background: transparent !important;
}

.ap-home-new .main-slider {
    display: none !important;
}

/* Scroll reveal helper */
.ap-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: ap-reveal 0.8s var(--ap-ease) forwards;
}

@keyframes ap-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ap-reveal-delay-1 { animation-delay: 0.1s; }
.ap-reveal-delay-2 { animation-delay: 0.2s; }
.ap-reveal-delay-3 { animation-delay: 0.3s; }

/* Why Choose Us — differentiators */
.ap-diff-section {
    overflow: hidden;
    background: linear-gradient(165deg, #f0fdfa 0%, #f8fafc 42%, #eef2ff 100%);
}

.ap-diff-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 8% 20%, rgba(20, 184, 166, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 92% 75%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.ap-diff-section .container {
    z-index: 1;
}

.ap-diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.ap-diff-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: var(--ap-white);
    border-radius: var(--ap-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow);
    height: 100%;
    transition: transform 0.4s var(--ap-ease), box-shadow 0.4s var(--ap-ease), border-color 0.4s var(--ap-ease);
    position: relative;
    overflow: hidden;
}

.ap-diff-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ap-teal), var(--ap-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ap-ease);
}

.ap-diff-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ap-shadow-lg);
    border-color: rgba(20, 184, 166, 0.25);
}

.ap-diff-card:hover::after {
    transform: scaleX(1);
}

.ap-diff-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(20, 184, 166, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: background 0.4s var(--ap-ease), transform 0.4s var(--ap-ease);
}

.ap-diff-card:hover .ap-diff-icon {
    background: linear-gradient(145deg, var(--ap-teal) 0%, var(--ap-indigo) 100%);
    transform: scale(1.05);
}

.ap-diff-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: filter 0.35s ease;
}

.ap-diff-card:hover .ap-diff-icon img {
    filter: brightness(0) invert(1);
}

.ap-diff-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 12px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.ap-diff-card p {
    color: var(--ap-slate);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

@media (max-width: 1199px) {
    .ap-diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ap-diff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ap-diff-card {
        padding: 28px 24px;
    }
}

/* Mobile drawer */
.ap-marketing-site .ap-mobile-overlay {
    background: rgba(10, 22, 40, 0.55) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

.ap-marketing-site .ap-mobile-overlay.active {
    visibility: visible;
    opacity: 1;
}

.ap-marketing-site .ap-mobile-drawer {
    display: flex;
    flex-direction: column;
    width: min(360px, 88vw) !important;
    max-width: 100%;
    background: linear-gradient(180deg, var(--ap-navy) 0%, #060d18 100%) !important;
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.35);
    cursor: default;
    overflow: hidden;
}

.ap-marketing-site .ap-mobile-overlay.active .ap-mobile-drawer {
    transform: translateX(0) !important;
}

.ap-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px !important;
    background: var(--ap-white) !important;
    border-bottom: 1px solid var(--ap-border);
    flex-shrink: 0;
}

.ap-mobile-drawer-logo img {
    max-height: 40px;
    width: auto;
}

.ap-mobile-drawer-close {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: var(--ap-bg);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.ap-mobile-drawer-close::before,
.ap-mobile-drawer-close::after {
    background: var(--ap-navy) !important;
    top: 50% !important;
    left: 50% !important;
    margin-left: -12px;
    margin-top: -1.5px;
}

.ap-mobile-drawer-close:hover {
    background: rgba(20, 184, 166, 0.12);
}

.ap-mobile-drawer-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.ap-mobile-drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px 16px;
    flex-shrink: 0;
}

.ap-mobile-drawer-btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
}

.ap-mobile-drawer-cta .ap-btn-header-outline {
    background: rgba(255, 255, 255, 0.95);
}

.ap-mobile-nav {
    flex: 1;
    padding: 8px 12px 16px;
}

.ap-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ap-mobile-nav li {
    margin: 0;
    border: none !important;
}

.ap-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 4px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease;
    border: none !important;
}

.ap-mobile-nav a i {
    width: 22px;
    text-align: center;
    font-size: 1rem;
    color: var(--ap-teal-bright);
    opacity: 0.9;
}

.ap-mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ap-white) !important;
}

.ap-mobile-nav a.active {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.22) 0%, rgba(99, 102, 241, 0.15) 100%);
    color: var(--ap-white) !important;
    box-shadow: inset 3px 0 0 var(--ap-teal-bright);
}

.ap-mobile-nav a.active i {
    color: var(--ap-teal-bright);
}

.ap-marketing-site .ap-mobile-nav a span {
    flex: 1;
}

.ap-mobile-drawer-footer {
    flex-shrink: 0;
    padding: 20px 18px 28px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.15);
}

.ap-mobile-drawer-footer-label {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 12px;
}

.ap-mobile-drawer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.ap-mobile-drawer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ap-teal-bright) !important;
    font-size: 1rem;
    transition: background 0.25s ease, transform 0.25s ease;
}

.ap-mobile-drawer-social a:hover {
    background: rgba(20, 184, 166, 0.25);
    transform: translateY(-2px);
    color: var(--ap-white) !important;
}

.ap-mobile-drawer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    padding: 8px 0;
}

.ap-mobile-drawer-contact-link:hover {
    color: var(--ap-teal-bright) !important;
}

.ap-mobile-drawer-contact-link i {
    width: 18px;
    color: var(--ap-teal-bright);
}

.ap-marketing-site .mobile-menu-overlay__body .offcanvas-navigation > ul > li {
    border: none !important;
}

.ap-marketing-site .mobile-menu-overlay__body .offcanvas-navigation > ul > li > a {
    padding: 0 !important;
    border: none !important;
}

.ap-marketing-site .ap-mobile-toggle {
    margin-left: 4px;
}

.ap-marketing-site .ap-mobile-toggle i,
.ap-marketing-site .ap-mobile-toggle i::before,
.ap-marketing-site .ap-mobile-toggle i::after {
    background: var(--ap-navy) !important;
}

.ap-marketing-site body.ap-mobile-menu-open {
    overflow: hidden;
}

/* Page intro panels (About, Contact, Partner) */
.ap-page-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.ap-page-intro-panel .ap-page-intro-actions {
    justify-content: flex-start;
}

@media (min-width: 992px) {
    .ap-page-intro-panel .ap-page-intro-actions {
        justify-content: flex-end;
        margin-left: auto;
        max-width: 100%;
    }

    .ap-page-intro-panel .ap-page-intro-actions .ap-btn {
        flex: 0 1 auto;
        white-space: nowrap;
    }
}

@media (max-width: 991px) {
    .ap-page-intro-panel .ap-page-intro-actions {
        width: 100%;
    }

    .ap-page-intro-panel .ap-page-intro-actions .ap-btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .ap-page-intro-panel .ap-page-intro-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ap-page-intro-panel .ap-page-intro-actions .ap-btn {
        flex: 1 1 auto;
        width: 100%;
    }
}

/* About us page */
.ap-about-page-intro {
    padding-top: 72px;
    padding-bottom: 40px;
}

.ap-about-intro-panel,
.ap-page-intro-panel.ap-partner-intro-panel,
.ap-page-intro-panel.ap-contact-intro-panel {
    background: var(--ap-white);
    border-radius: var(--ap-radius-xl);
    padding: 48px 40px;
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-lg);
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.ap-about-intro-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ap-teal), var(--ap-indigo), var(--ap-gold));
}

.ap-about-intro-title {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 800;
    color: var(--ap-navy);
    margin: 12px 0 16px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.ap-about-intro-lead {
    color: var(--ap-slate);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin: 0;
    max-width: 720px;
}

.ap-about-page-intro .ap-platform-banner {
    margin-bottom: 0;
}

.ap-about-story-title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 20px;
}

.ap-about-story-text {
    color: var(--ap-slate);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.ap-about-stat-note {
    font-size: 0.9375rem;
    color: var(--ap-slate);
    line-height: 1.65;
}

.ap-about-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.ap-about-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--ap-navy-mid);
    font-size: 0.9375rem;
}

.ap-about-checklist li i {
    color: var(--ap-teal);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.ap-about-checklist-compact {
    grid-template-columns: 1fr;
    margin-top: 0;
}

.ap-about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ap-about-value-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-sm);
    height: 100%;
    transition: transform 0.35s var(--ap-ease), box-shadow 0.35s var(--ap-ease);
}

.ap-about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ap-shadow);
}

.ap-about-value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ap-teal-dark);
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.ap-about-value-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 12px;
}

.ap-about-value-card p {
    color: var(--ap-slate);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

.ap-about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.ap-about-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    background: var(--ap-white);
    border: 1px solid var(--ap-border);
    border-radius: var(--ap-radius);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ap-navy);
    box-shadow: var(--ap-shadow-sm);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.ap-about-service-item:hover {
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateY(-2px);
}

.ap-about-service-item i {
    color: var(--ap-teal-dark);
    font-size: 1.125rem;
    width: 22px;
    text-align: center;
}

.ap-about-digital-title {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--ap-navy);
    margin: 12px 0 16px;
}

.ap-about-company-card {
    background: var(--ap-white);
    border-radius: var(--ap-radius-xl);
    padding: 36px 32px;
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-lg);
    height: 100%;
}

.ap-about-company-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ap-navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(20, 184, 166, 0.2);
}

.ap-about-company-dl {
    margin: 0;
}

.ap-about-company-dl > div {
    margin-bottom: 20px;
}

.ap-about-company-dl > div:last-child {
    margin-bottom: 0;
}

.ap-about-company-dl dt {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ap-teal-dark);
    margin-bottom: 6px;
}

.ap-about-company-dl dd {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--ap-navy-mid);
}

.ap-about-company-dl a {
    color: var(--ap-teal-dark);
    font-weight: 700;
}

.ap-about-page-cta {
    padding-bottom: 100px;
}

.ap-about-page-cta .ap-cta-band {
    margin: 0;
}

@media (max-width: 991px) {
    .ap-about-values-grid {
        grid-template-columns: 1fr;
    }

    .ap-about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ap-about-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .ap-about-intro-panel {
        padding: 32px 24px;
    }

    .ap-about-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1199px) {
    .ap-nav-desktop { display: none !important; }
    .ap-hero-stats { grid-template-columns: 1fr; }
}

@media (min-width: 1200px) {
    .ap-mobile-toggle { display: none !important; }
}

@media (max-width: 991px) {
    .ap-hero { padding: 72px 0 88px; }
    .ap-section { padding: 72px 0; }
    .ap-about-panel { padding: 32px 24px; }
}
