/**
 * AxcessDocs Premium Design System v3.0
 * Immigration Documentation Services
 *
 * Typography: Playfair Display (display) + DM Sans (body)
 * Color: Professional blue spectrum
 * Grid: 8px base, 1200px container
 */

/* ========================================================================
   1. DESIGN TOKENS
   ======================================================================== */

:root {
    /* Typography */
    --axsk-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --axsk-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Brand Colors */
    --axsk-blue-dark:     #0B3C80;
    --axsk-blue-primary:  #0051A3;
    --axsk-blue-light:    #5BC0EB;
    --axsk-blue-pale:     #94CFED;
    --axsk-blue-vivid:    #3DB8EC;
    --axsk-dark:          #082D60;
    --axsk-white:         #FFFFFF;
    --axsk-off-white:     #F6F9FC;
    --axsk-cream:         #EEF3F8;
    --axsk-text-gray:     #4A4843;
    --axsk-light-gray:    #E2E8F0;
    --axsk-gray-500:      #6B6862;

    /* Semantic */
    --axsk-success:       #2D8A4E;
    --axsk-danger:        #C0392B;
    --axsk-gold:          #F5A623;

    /* Gradients */
    --axsk-gradient-blue: linear-gradient(135deg, #1199D8, #0051A3);
    --axsk-gradient-dark: linear-gradient(135deg, #082D60, #0B3C80);
    --axsk-gradient-cta:  linear-gradient(135deg, #0051A3, #0B3C80);

    /* Shadows (3-tier) */
    --axsk-shadow-sm:   0 2px 8px rgba(11,60,128,0.06);
    --axsk-shadow-md:   0 8px 30px rgba(11,60,128,0.10);
    --axsk-shadow-lg:   0 20px 60px rgba(11,60,128,0.15);
    --axsk-shadow-hero: 0 30px 80px rgba(11,60,128,0.25);

    /* Radius */
    --axsk-radius-sm:   8px;
    --axsk-radius-md:   12px;
    --axsk-radius-lg:   16px;
    --axsk-radius-xl:   20px;
    --axsk-radius-pill: 50px;

    /* Transitions */
    --axsk-transition:      all 0.3s ease;
    --axsk-transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --axsk-transition-fast: all 0.2s ease;
}


/* ========================================================================
   2. GLOBAL RESET & BASE
   ======================================================================== */

.axcessdocs-page {
    margin: 0;
    padding: 0;
    font-family: var(--axsk-font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--axsk-text-gray);
    background: var(--axsk-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.axcessdocs-page *,
.axcessdocs-page *::before,
.axcessdocs-page *::after {
    box-sizing: border-box;
}

.axcessdocs-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.axcessdocs-page a {
    color: var(--axsk-blue-primary);
    text-decoration: none;
    transition: var(--axsk-transition-fast);
}

.axcessdocs-page a:hover {
    color: var(--axsk-blue-light);
}

.axcessdocs-page h1,
.axcessdocs-page h2,
.axcessdocs-page h3,
.axcessdocs-page h4,
.axcessdocs-page h5,
.axcessdocs-page h6 {
    font-family: var(--axsk-font-display);
    color: var(--axsk-blue-dark);
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
}

.axcessdocs-page p {
    margin: 0 0 16px;
}

.axcessdocs-page ul,
.axcessdocs-page ol {
    padding-left: 20px;
    margin: 0 0 16px;
}


/* ========================================================================
   3. CONTAINER
   ======================================================================== */

.axsk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}


/* ========================================================================
   4. TOP BAR
   ======================================================================== */

.axsk-top-bar {
    background: var(--axsk-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}


/* ========================================================================
   5. HEADER
   ======================================================================== */

.axsk-header {
    background: var(--axsk-white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.axsk-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.axsk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.axsk-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.axsk-logo img {
    max-height: 42px;
    width: auto;
}

.axsk-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.axsk-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--axsk-text-gray);
    padding: 8px 12px;
    border-radius: var(--axsk-radius-sm);
    transition: var(--axsk-transition-fast);
    white-space: nowrap;
    position: relative;
}

.axsk-nav a:hover {
    color: var(--axsk-blue-primary);
    background: rgba(0,81,163,0.04);
}

.axsk-nav a.active {
    color: var(--axsk-blue-primary);
}

.axsk-header-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--axsk-gradient-cta);
    color: var(--axsk-white) !important;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: var(--axsk-radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--axsk-transition);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,81,163,0.25);
}

.axsk-header-cta:hover {
    background: linear-gradient(135deg, #0B3C80, #082D60);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,81,163,0.35);
    color: var(--axsk-white) !important;
}

/* Hamburger */
.axsk-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    gap: 5px;
    z-index: 1002;
}

.axsk-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--axsk-blue-dark);
    border-radius: 2px;
    transition: var(--axsk-transition);
}


/* ========================================================================
   6. BUTTONS
   ======================================================================== */

.axsk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--axsk-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--axsk-radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--axsk-transition);
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.axsk-btn-primary {
    background: var(--axsk-gradient-cta);
    color: var(--axsk-white) !important;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0,81,163,0.3);
}

.axsk-btn-primary:hover {
    background: linear-gradient(135deg, #0B3C80, #082D60);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,81,163,0.4);
    color: var(--axsk-white) !important;
}

.axsk-btn-outline-blue {
    background: transparent;
    color: var(--axsk-blue-primary) !important;
    border-color: var(--axsk-blue-primary);
}

.axsk-btn-outline-blue:hover {
    background: var(--axsk-blue-primary);
    color: var(--axsk-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,81,163,0.3);
}

.axsk-btn-outline-white {
    background: transparent;
    color: var(--axsk-white) !important;
    border-color: rgba(255,255,255,0.5);
}

.axsk-btn-outline-white:hover {
    background: var(--axsk-white);
    color: var(--axsk-blue-dark) !important;
    border-color: var(--axsk-white);
    transform: translateY(-2px);
}

.axsk-btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.axsk-btn-white {
    background: var(--axsk-white);
    color: var(--axsk-blue-dark) !important;
    border-color: var(--axsk-white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.axsk-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}


/* ========================================================================
   7. HERO — HOME
   ======================================================================== */

.axsk-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--axsk-dark);
    background-size: cover;
    background-position: center;
}

.axsk-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(8,45,96,0.88), rgba(11,60,128,0.78));
    z-index: 1;
}

.axsk-particles-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.axsk-hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

.axsk-hero-title {
    font-family: var(--axsk-font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--axsk-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: 12px;
}

.axsk-hero-title span {
    color: var(--axsk-blue-light);
}

/* Gradient accent line under hero title */
.axsk-hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--axsk-gradient-blue);
    border-radius: 2px;
    margin: 20px auto 0;
}

.axsk-hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 24px auto 40px;
    line-height: 1.7;
}

.axsk-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.axsk-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: axsk-bounce 2s ease infinite;
}

.axsk-scroll-indicator svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255,255,255,0.5);
}

@keyframes axsk-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* ========================================================================
   8. HERO — INNER PAGES
   ======================================================================== */

.axsk-hero-inner {
    min-height: 300px;
    background: var(--axsk-gradient-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay for inner heroes */
.axsk-hero-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(17,153,216,0.08) 1px, transparent 1px),
                      radial-gradient(circle at 80% 20%, rgba(17,153,216,0.06) 1px, transparent 1px),
                      radial-gradient(circle at 60% 80%, rgba(17,153,216,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    z-index: 1;
}

.axsk-hero-inner .axsk-hero-content {
    padding: 60px 0;
}

.axsk-hero-inner .axsk-hero-title {
    color: #ffffff !important;
    color: rgba(255,255,255,0.95);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.axsk-hero-inner .axsk-hero-title::after {
    margin-top: 16px;
    width: 60px;
    height: 3px;
}

.axsk-hero-inner .axsk-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 16px auto 0;
    max-width: 600px;
}

/* Breadcrumb */
.axsk-breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
}

.axsk-breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: var(--axsk-transition-fast);
}

.axsk-breadcrumb a:hover {
    color: rgba(255,255,255,0.8);
}

.axsk-breadcrumb span {
    margin: 0 8px;
}


/* ========================================================================
   9. SECTIONS — BASE
   ======================================================================== */

.axsk-section {
    padding: 100px 0;
    position: relative;
}

.axsk-section-label {
    font-family: var(--axsk-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--axsk-blue-light);
    display: inline-block;
    margin-bottom: 12px;
}

.axsk-section-title {
    font-family: var(--axsk-font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--axsk-blue-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

/* Gradient accent line under section titles */
.axsk-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--axsk-gradient-blue);
    border-radius: 2px;
    margin-top: 16px;
}

/* Centered titles */
.axsk-section > .axsk-container > .axsk-section-title {
    text-align: center;
}

.axsk-section > .axsk-container > .axsk-section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.axsk-section-subtitle {
    font-size: 1.05rem;
    color: var(--axsk-gray-500);
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
    line-height: 1.75;
}

/* Centered section label + title + subtitle */
.axsk-section > .axsk-container > .axsk-section-label {
    display: block;
    text-align: center;
}


/* ========================================================================
   10. TWO-COLUMN LAYOUT
   ======================================================================== */

.axsk-two-col {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    align-items: center;
}

.axsk-two-col-reverse {
    direction: rtl;
}

.axsk-two-col-reverse > * {
    direction: ltr;
}

.axsk-col-text h2 {
    font-family: var(--axsk-font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.axsk-col-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--axsk-text-gray);
    margin-bottom: 16px;
}

.axsk-col-text .axsk-btn {
    margin-top: 12px;
}

/* Image container with decorative accent */
.axsk-col-image {
    position: relative;
    border-radius: var(--axsk-radius-lg);
    overflow: hidden;
    box-shadow: var(--axsk-shadow-lg);
}

.axsk-col-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: rgba(17,153,216,0.12);
    border-radius: var(--axsk-radius-md);
    z-index: -1;
}

.axsk-col-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: var(--axsk-radius-lg);
}

.axsk-col-image:hover img {
    transform: scale(1.03);
}


/* ========================================================================
   11. WHAT-WE-DO SECTION
   ======================================================================== */

.axsk-what-we-do {
    background: var(--axsk-off-white);
}


/* ========================================================================
   12. SERVICE CARDS
   ======================================================================== */

.axsk-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.axsk-service-card {
    background: var(--axsk-white);
    border-radius: var(--axsk-radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(11,60,128,0.06);
    box-shadow: var(--axsk-shadow-sm);
    transition: var(--axsk-transition-slow);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Gradient top accent — hidden by default, appears on hover */
.axsk-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--axsk-gradient-blue);
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.axsk-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--axsk-shadow-md);
}

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

.axsk-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    background: linear-gradient(135deg, var(--axsk-cream), var(--axsk-off-white));
    border: 1px solid rgba(17,153,216,0.15);
    border-radius: 50%;
    line-height: 1;
}

.axsk-service-card h3 {
    font-family: var(--axsk-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.axsk-service-card p {
    font-size: 0.95rem;
    color: var(--axsk-gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.axsk-service-card .axsk-btn {
    margin-top: 8px;
}


/* ========================================================================
   13. STATS SECTION
   ======================================================================== */

.axsk-stats {
    background: var(--axsk-gradient-dark);
    padding: 80px 0;
}

.axsk-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.axsk-stat-item {
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.axsk-stat-item:last-child {
    border-right: none;
}

.axsk-stat-number {
    display: block;
    font-family: var(--axsk-font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--axsk-white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.axsk-stat-number::after {
    color: var(--axsk-blue-light);
}

.axsk-stat-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* ========================================================================
   14. PROCESS STEPS (Comment ça marche)
   ======================================================================== */

.axsk-how-it-works {
    background: var(--axsk-cream);
}

.axsk-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

/* Connecting line behind steps */
.axsk-process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 2px;
    border-top: 2px dashed rgba(17,153,216,0.3);
    z-index: 0;
}

.axsk-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.axsk-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--axsk-gradient-blue);
    color: var(--axsk-white);
    font-family: var(--axsk-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(17,153,216,0.3);
}

.axsk-process-step h3 {
    font-family: var(--axsk-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-bottom: 12px;
}

.axsk-process-step p {
    font-size: 0.9rem;
    color: var(--axsk-gray-500);
    line-height: 1.7;
}

.axsk-process-detailed {
    gap: 48px;
}


/* ========================================================================
   15. ABOUT SECTION
   ======================================================================== */

.axsk-about {
    background: var(--axsk-off-white);
}


/* ========================================================================
   16. PRICING
   ======================================================================== */

.axsk-pricing {
    background: var(--axsk-off-white);
}

.axsk-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    align-items: start;
}

.axsk-pricing-card {
    background: var(--axsk-white);
    border-radius: var(--axsk-radius-xl);
    padding: 40px 32px;
    border: 1px solid rgba(11,60,128,0.06);
    box-shadow: var(--axsk-shadow-sm);
    text-align: center;
    transition: var(--axsk-transition-slow);
    position: relative;
}

.axsk-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--axsk-shadow-md);
}

.axsk-pricing-card h3 {
    font-family: var(--axsk-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--axsk-gray-500);
    margin-bottom: 16px;
}

.axsk-pricing-price {
    font-family: var(--axsk-font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--axsk-blue-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.axsk-pricing-card hr {
    border: none;
    height: 3px;
    background: var(--axsk-gradient-blue);
    width: 60px;
    margin: 24px auto;
    border-radius: 2px;
}

.axsk-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.axsk-pricing-features li {
    font-size: 0.9rem;
    color: var(--axsk-text-gray);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.axsk-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--axsk-blue-light);
    font-weight: 700;
    font-size: 0.9rem;
}

.axsk-pricing-card .axsk-btn {
    width: 100%;
}

/* Featured pricing card */
.axsk-pricing-featured {
    transform: translateY(-16px);
    border-color: var(--axsk-blue-primary);
    box-shadow: var(--axsk-shadow-lg);
    position: relative;
    z-index: 1;
}

.axsk-pricing-featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--axsk-gradient-blue);
    color: var(--axsk-white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: var(--axsk-radius-pill);
    box-shadow: 0 2px 8px rgba(17,153,216,0.3);
}

.axsk-pricing-featured:hover {
    transform: translateY(-20px);
    box-shadow: var(--axsk-shadow-hero);
}


/* ========================================================================
   17. TESTIMONIALS
   ======================================================================== */

.axsk-testimonials {
    background: var(--axsk-cream);
}

.axsk-testimonials-wrapper {
    overflow: hidden;
    margin-top: 48px;
}

.axsk-testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.axsk-testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--axsk-white);
    border-radius: var(--axsk-radius-lg);
    padding: 40px 32px;
    box-shadow: var(--axsk-shadow-sm);
    border: 1px solid rgba(11,60,128,0.04);
    position: relative;
}

/* Decorative quote mark */
.axsk-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--axsk-font-display);
    font-size: 4rem;
    color: var(--axsk-blue-light);
    opacity: 0.15;
    line-height: 1;
}

.axsk-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--axsk-gold);
    font-size: 1rem;
}

.axsk-testimonial-card > p {
    font-size: 1rem;
    font-style: italic;
    color: var(--axsk-text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.axsk-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--axsk-light-gray);
}

.axsk-testimonial-author strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
}

.axsk-testimonial-author span {
    font-size: 0.8rem;
    color: var(--axsk-gray-500);
}

/* Carousel dots */
.axsk-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.axsk-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--axsk-light-gray);
    cursor: pointer;
    padding: 0;
    transition: var(--axsk-transition);
}

.axsk-carousel-dot.active {
    background: var(--axsk-gradient-blue);
    transform: scale(1.2);
}


/* ========================================================================
   18. CTA SECTION
   ======================================================================== */

.axsk-cta-section {
    background: var(--axsk-gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle wave separator at top */
.axsk-cta-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--axsk-white);
    clip-path: ellipse(55% 100% at 50% 0%);
    z-index: 1;
}

.axsk-cta-section h2 {
    font-family: var(--axsk-font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--axsk-white);
    margin-bottom: 16px;
}

.axsk-cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 32px;
}

.axsk-cta-section .axsk-btn-primary {
    background: var(--axsk-white);
    color: var(--axsk-blue-dark) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.axsk-cta-section .axsk-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.3);
    background: var(--axsk-white);
}

/* Fix wave for sections that come after off-white/cream backgrounds */
.axsk-pricing + .axsk-cta-section::before,
.axsk-about + .axsk-cta-section::before,
.axsk-testimonials + .axsk-cta-section::before {
    background: var(--axsk-off-white);
}


/* ========================================================================
   19. COMPLIANCE NOTICE
   ======================================================================== */

.axsk-compliance {
    background: var(--axsk-off-white);
    padding: 40px 0;
    text-align: center;
}

.axsk-compliance p {
    font-size: 0.8rem;
    color: var(--axsk-gray-500);
    font-style: italic;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}


/* ========================================================================
   20. FOOTER
   ======================================================================== */

.axsk-footer {
    background: var(--axsk-dark);
    position: relative;
}

/* Gradient top border */
.axsk-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--axsk-gradient-blue);
}

.axsk-footer-grid {
    display: grid;
    grid-template-columns: 40% 30% 30%;
    gap: 40px;
    padding: 64px 0 48px;
}

.axsk-footer-brand img {
    max-height: 36px;
    width: auto;
    margin-bottom: 20px;
}

.axsk-footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 320px;
}

.axsk-footer-links h4 {
    font-family: var(--axsk-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--axsk-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.axsk-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.axsk-footer-links li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.axsk-footer-links a {
    color: rgba(255,255,255,0.6);
    transition: var(--axsk-transition-fast);
}

.axsk-footer-links a:hover {
    color: var(--axsk-white);
}

.axsk-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}

.axsk-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin: 0 0 8px;
}

.axsk-footer-bottom p:last-child {
    margin-bottom: 0;
}

.axsk-footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.3) !important;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto !important;
    line-height: 1.6;
}


/* ========================================================================
   21. CONTENT NARROW
   ======================================================================== */

.axsk-content-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.axsk-content-narrow h2 {
    font-family: var(--axsk-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-bottom: 20px;
}

.axsk-content-narrow h3 {
    font-family: var(--axsk-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

.axsk-content-narrow p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--axsk-text-gray);
}


/* ========================================================================
   22. CHECKLISTS
   ======================================================================== */

.axsk-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.axsk-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--axsk-text-gray);
    line-height: 1.6;
}

.axsk-checklist li::before {
    content: '✓';
    color: var(--axsk-success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
}


/* ========================================================================
   23. CROSS LIST (what we DON'T do)
   ======================================================================== */

.axsk-list-cross {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.axsk-list-cross li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--axsk-text-gray);
    line-height: 1.6;
}

.axsk-list-cross li::before {
    content: '✗';
    color: var(--axsk-danger);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}


/* ========================================================================
   24. ADVANTAGE/FEATURE GRID
   ======================================================================== */

.axsk-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.axsk-advantage-card {
    background: var(--axsk-white);
    border-radius: var(--axsk-radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(11,60,128,0.06);
    box-shadow: var(--axsk-shadow-sm);
    transition: var(--axsk-transition-slow);
    position: relative;
    overflow: hidden;
}

.axsk-advantage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--axsk-gradient-blue);
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.axsk-advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--axsk-shadow-md);
}

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

.axsk-advantage-card h3 {
    font-family: var(--axsk-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-bottom: 8px;
}

.axsk-advantage-card p {
    font-size: 0.9rem;
    color: var(--axsk-gray-500);
    line-height: 1.7;
    margin: 0;
}


/* ========================================================================
   25. ADVANTAGES TWO-COLUMN
   ======================================================================== */

.axsk-advantages-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
    margin-top: 24px;
}


/* ========================================================================
   26. NOTICE BOX
   ======================================================================== */

.axsk-notice-box {
    background: var(--axsk-off-white);
    border-left: 4px solid var(--axsk-blue-primary);
    padding: 28px 32px;
    border-radius: 0 var(--axsk-radius-md) var(--axsk-radius-md) 0;
    margin: 40px 0;
}

.axsk-notice-box h2,
.axsk-notice-box h4 {
    font-family: var(--axsk-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-bottom: 12px;
}

.axsk-notice-box p {
    font-size: 0.95rem;
    color: var(--axsk-text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.axsk-notice-box p:last-child {
    margin-bottom: 0;
}


/* ========================================================================
   27. DIVIDER
   ======================================================================== */

.axsk-divider {
    border: none;
    height: 3px;
    width: 60px;
    background: var(--axsk-gradient-blue);
    border-radius: 2px;
    margin: 32px 0;
}


/* ========================================================================
   28. LEGAL CONTENT
   ======================================================================== */

.axsk-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.axsk-legal-content h2 {
    font-family: var(--axsk-font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--axsk-blue-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.axsk-legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--axsk-text-gray);
}

.axsk-legal-content ul {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.axsk-legal-content ul li {
    font-size: 0.95rem;
    color: var(--axsk-text-gray);
    line-height: 1.7;
    padding: 6px 0 6px 24px;
    position: relative;
}

.axsk-legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--axsk-blue-light);
    font-weight: 700;
}

.axsk-legal-content a {
    color: var(--axsk-blue-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.axsk-legal-content a:hover {
    color: var(--axsk-blue-light);
}


/* ========================================================================
   29. CONTACT PAGE
   ======================================================================== */

.axsk-contact-grid {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5%;
    align-items: start;
}

.axsk-contact-info h2 {
    font-family: var(--axsk-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-bottom: 24px;
}

.axsk-contact-item {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--axsk-off-white);
    border-radius: var(--axsk-radius-md);
    border: 1px solid rgba(11,60,128,0.04);
}

.axsk-contact-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--axsk-blue-dark);
    display: block;
    margin-bottom: 4px;
}

.axsk-contact-item p {
    font-size: 0.95rem;
    color: var(--axsk-text-gray);
    margin: 0;
    line-height: 1.6;
}

.axsk-contact-form {
    background: var(--axsk-white);
    border: 1px solid rgba(11,60,128,0.06);
    border-radius: var(--axsk-radius-lg);
    padding: 40px;
    box-shadow: var(--axsk-shadow-sm);
}

.axsk-contact-form h2,
.axsk-contact-form h3 {
    font-family: var(--axsk-font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-bottom: 20px;
}

.axsk-contact-form-placeholder {
    padding: 40px;
    background: var(--axsk-off-white);
    border-radius: var(--axsk-radius-md);
    text-align: center;
    border: 2px dashed var(--axsk-light-gray);
}

.axsk-contact-form-placeholder p {
    font-size: 0.9rem;
    color: var(--axsk-gray-500);
    margin: 0;
}


/* ========================================================================
   30. CRITERIA GRID
   ======================================================================== */

.axsk-criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.axsk-criteria-item {
    padding: 20px;
    background: var(--axsk-off-white);
    border-radius: var(--axsk-radius-md);
    border: 1px solid rgba(11,60,128,0.04);
}

.axsk-criteria-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
    display: block;
    margin-bottom: 4px;
}

.axsk-criteria-item p {
    font-size: 0.85rem;
    color: var(--axsk-gray-500);
    margin: 0;
    line-height: 1.6;
}


/* ========================================================================
   31. TRUST GRID
   ======================================================================== */

.axsk-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.axsk-trust-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--axsk-off-white);
    border-radius: var(--axsk-radius-lg);
    border: 1px solid rgba(11,60,128,0.04);
}

.axsk-trust-card h4 {
    font-family: var(--axsk-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--axsk-blue-dark);
    margin-bottom: 8px;
}

.axsk-trust-card p {
    font-size: 0.85rem;
    color: var(--axsk-gray-500);
    margin: 0;
}


/* ========================================================================
   32. FAQ ACCORDION
   ======================================================================== */

.axsk-faq {
    margin-top: 32px;
}

.axsk-faq-item {
    border-bottom: 1px solid var(--axsk-light-gray);
}

.axsk-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--axsk-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--axsk-blue-dark);
    text-align: left;
    gap: 16px;
    transition: var(--axsk-transition-fast);
}

.axsk-faq-question:hover {
    color: var(--axsk-blue-primary);
}

/* Kill any ::after pseudo (prevent duplication with icon span) */
.axsk-faq-question::after {
    content: none;
}

.axsk-faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--axsk-blue-light);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
    width: 24px;
    text-align: center;
}

.axsk-faq-item.active .axsk-faq-icon {
    transform: rotate(45deg);
}

.axsk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.axsk-faq-item.active .axsk-faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.axsk-faq-answer p {
    font-size: 0.95rem;
    color: var(--axsk-text-gray);
    line-height: 1.7;
    margin: 0;
}


/* ========================================================================
   33. WOOCOMMERCE OVERRIDES
   ======================================================================== */

.axcessdocs-page .woocommerce ul.products li.product {
    background: var(--axsk-white);
    border-radius: var(--axsk-radius-lg);
    padding: 24px;
    border: 1px solid rgba(11,60,128,0.06);
    box-shadow: var(--axsk-shadow-sm);
    transition: var(--axsk-transition-slow);
    overflow: hidden;
}

.axcessdocs-page .woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--axsk-shadow-md);
}

.axcessdocs-page .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--axsk-font-display);
    color: var(--axsk-blue-dark);
    font-size: 1rem;
}

.axcessdocs-page .woocommerce ul.products li.product .price {
    color: var(--axsk-blue-primary);
    font-weight: 700;
}

.axcessdocs-page .woocommerce .button,
.axcessdocs-page .woocommerce a.button {
    background: var(--axsk-gradient-cta) !important;
    color: var(--axsk-white) !important;
    border-radius: var(--axsk-radius-pill) !important;
    font-family: var(--axsk-font-body) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border: none !important;
    transition: var(--axsk-transition) !important;
}

.axcessdocs-page .woocommerce .button:hover,
.axcessdocs-page .woocommerce a.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,81,163,0.3);
}


/* ========================================================================
   34. SCROLL REVEAL ANIMATIONS
   ======================================================================== */

.axsk-reveal,
.axsk-reveal-left,
.axsk-reveal-right {
    opacity: 0;
    transition: var(--axsk-transition-slow);
}

.axsk-reveal {
    transform: translateY(30px);
}

.axsk-reveal-left {
    transform: translateX(-40px);
}

.axsk-reveal-right {
    transform: translateX(40px);
}

.axsk-reveal.visible,
.axsk-reveal-left.visible,
.axsk-reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Legacy reveal classes */
.reveal { opacity: 0; transform: translateY(30px); transition: var(--axsk-transition-slow); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: var(--axsk-transition-slow); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: var(--axsk-transition-slow); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0); }

/* Stagger animation */
@keyframes axsk-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.axsk-stagger > * {
    opacity: 0;
    animation-fill-mode: both;
}

.axsk-stagger.is-visible > *:nth-child(1) { animation: axsk-fade-up 0.6s 0.05s both; }
.axsk-stagger.is-visible > *:nth-child(2) { animation: axsk-fade-up 0.6s 0.15s both; }
.axsk-stagger.is-visible > *:nth-child(3) { animation: axsk-fade-up 0.6s 0.25s both; }
.axsk-stagger.is-visible > *:nth-child(4) { animation: axsk-fade-up 0.6s 0.35s both; }
.axsk-stagger.is-visible > *:nth-child(5) { animation: axsk-fade-up 0.6s 0.45s both; }
.axsk-stagger.is-visible > *:nth-child(6) { animation: axsk-fade-up 0.6s 0.55s both; }

/* JS-driven stagger for cards */
.is-visible {
    opacity: 1 !important;
}


/* ========================================================================
   35. RESPONSIVE — 1200px
   ======================================================================== */

@media (max-width: 1200px) {
    .axsk-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================================================
   36. RESPONSIVE — 1024px
   ======================================================================== */

@media (max-width: 1024px) {
    .axsk-section {
        padding: 80px 0;
    }

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

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

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

    .axsk-stat-item:nth-child(2) {
        border-right: none;
    }

    .axsk-stat-item:nth-child(3),
    .axsk-stat-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.1);
    }

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

    .axsk-process-grid::before {
        display: none;
    }

    .axsk-pricing-grid {
        gap: 24px;
    }

    .axsk-testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }

    .axsk-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .axsk-footer-brand {
        grid-column: 1 / -1;
    }

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


/* ========================================================================
   37. RESPONSIVE — 768px (Tablet / Mobile)
   ======================================================================== */

@media (max-width: 768px) {
    /* Navigation becomes mobile overlay */
    .axsk-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(8,45,96,0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1001;
        padding: 80px 40px;
    }

    .axsk-nav.open {
        display: flex;
    }

    .axsk-nav a {
        color: var(--axsk-white);
        font-size: 1.2rem;
        padding: 16px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .axsk-nav a:hover {
        color: var(--axsk-blue-light);
        background: rgba(255,255,255,0.05);
    }

    .axsk-menu-toggle {
        display: flex;
    }

    .axsk-header-cta {
        display: none;
    }

    .axsk-header-inner {
        height: 64px;
    }

    .axsk-logo img {
        max-height: 36px;
    }

    /* Hero */
    .axsk-hero {
        min-height: 70vh;
    }

    .axsk-hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .axsk-hero-subtitle {
        font-size: 1rem;
    }

    .axsk-hero-inner {
        min-height: 240px;
    }

    .axsk-hero-inner .axsk-hero-title {
    color: #ffffff !important;
        color: rgba(255,255,255,0.95);
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    /* Sections */
    .axsk-section {
        padding: 64px 0;
    }

    .axsk-section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    /* Two-column stacks */
    .axsk-two-col,
    .axsk-two-col-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .axsk-two-col-reverse > * {
        direction: ltr;
    }

    /* Cards */
    .axsk-service-grid {
        grid-template-columns: 1fr;
    }

    .axsk-advantage-grid {
        grid-template-columns: 1fr;
    }

    .axsk-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .axsk-pricing-featured {
        transform: translateY(0);
    }

    .axsk-pricing-featured:hover {
        transform: translateY(-4px);
    }

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

    .axsk-stat-number {
        font-size: 2.2rem;
    }

    /* Process */
    .axsk-process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Testimonials */
    .axsk-testimonial-card {
        flex: 0 0 100%;
    }

    /* Footer */
    .axsk-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 32px;
    }

    /* Contact */
    .axsk-contact-grid {
        grid-template-columns: 1fr;
    }

    /* Criteria */
    .axsk-criteria-grid {
        grid-template-columns: 1fr;
    }

    /* Trust */
    .axsk-trust-grid {
        grid-template-columns: 1fr;
    }

    /* Advantages two-col */
    .axsk-advantages-two-col {
        grid-template-columns: 1fr;
    }

    /* CTA wave */
    .axsk-cta-section::before {
        height: 24px;
    }
}


/* ========================================================================
   38. RESPONSIVE — 480px (Small Mobile)
   ======================================================================== */

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

    .axsk-section {
        padding: 48px 0;
    }

    .axsk-hero {
        min-height: 60vh;
    }

    .axsk-hero-content {
        padding: 48px 0;
    }

    .axsk-hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .axsk-hero-subtitle {
        font-size: 0.95rem;
    }

    .axsk-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .axsk-hero-cta .axsk-btn {
        width: 100%;
        max-width: 280px;
    }

    .axsk-hero-inner {
        min-height: 200px;
    }

    .axsk-hero-inner .axsk-hero-title {
    color: #ffffff !important;
        color: rgba(255,255,255,0.95);
    font-size: 1.5rem;
    }

    .axsk-section-title {
        font-size: 1.5rem;
    }

    .axsk-service-card {
        padding: 32px 24px;
    }

    .axsk-pricing-card {
        padding: 32px 24px;
    }

    .axsk-testimonial-card {
        padding: 28px 20px;
    }

    .axsk-col-text h2 {
        font-size: 1.4rem;
    }

    .axsk-stat-number {
        font-size: 2rem;
    }

    .axsk-contact-form {
        padding: 24px;
    }

    .axsk-notice-box {
        padding: 20px 24px;
    }

    .axsk-scroll-indicator {
        display: none;
    }

    /* Touch-friendly targets */
    .axsk-btn {
        padding: 14px 28px;
        min-height: 48px;
    }

    .axsk-faq-question {
        padding: 16px 0;
        min-height: 48px;
    }

    .axsk-nav a {
        min-height: 48px;
    }
}


/* ========================================================================
   39. ACCESSIBILITY — Reduced Motion
   ======================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .axsk-reveal,
    .axsk-reveal-left,
    .axsk-reveal-right,
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }

    .axsk-scroll-indicator {
        animation: none;
    }
}


/* ========================================================================
   40. PRINT STYLES
   ======================================================================== */

@media print {
    .axsk-top-bar,
    .axsk-header,
    .axsk-footer,
    .axsk-particles-canvas,
    .axsk-scroll-indicator,
    .axsk-hero-overlay,
    .axsk-carousel-controls,
    .axsk-menu-toggle {
        display: none !important;
    }

    .axsk-hero,
    .axsk-hero-inner {
        min-height: auto;
        background: none !important;
        color: #000;
    }

    .axsk-hero-title,
    .axsk-hero-inner .axsk-hero-title {
    color: #ffffff !important;
        color: #000;
    }

    .axsk-hero-subtitle,
    .axsk-hero-inner .axsk-hero-subtitle {
        color: #333;
    }

    .axsk-section {
        padding: 24px 0;
    }

    .axsk-cta-section,
    .axsk-stats {
        background: none !important;
    }

    .axsk-cta-section h2,
    .axsk-cta-section p {
        color: #000;
    }

    body {
        font-size: 12pt;
    }
}

/* HubSpot Contact Form Styling v3.1 */
#hubspot-form-container { max-width:100%; }
#hubspot-form-container .hs-form-field { margin-bottom:16px; }
#hubspot-form-container label:not(.hs-error-msg) { font-weight:600; color:#1a2b4a; font-size:0.95rem; }
#hubspot-form-container .hs-richtext h3,
#hubspot-form-container .hs-richtext h2 { color:#1a2b4a !important; font-weight:700; }
#hubspot-form-container .hs-richtext p { color:#4a5568 !important; font-size:0.95rem; }
#hubspot-form-container input[type="text"],
#hubspot-form-container input[type="email"],
#hubspot-form-container input[type="tel"],
#hubspot-form-container input[type="number"],
#hubspot-form-container textarea,
#hubspot-form-container select { width:100%; padding:10px 14px; border:1px solid #d1d5db; border-radius:8px; font-size:0.95rem; background:#f9fafb; transition:border-color 0.3s,box-shadow 0.3s; }
#hubspot-form-container input:focus,
#hubspot-form-container textarea:focus,
#hubspot-form-container select:focus { border-color:#5BC0EB; box-shadow:0 0 0 3px rgba(91,192,235,0.15); outline:none; background:#fff; }
#hubspot-form-container .hs-button,
#hubspot-form-container button[type="submit"],
#hubspot-form-container input[type="submit"] { background:#1a2b4a !important; color:#fff !important; border:none !important; padding:12px 32px !important; border-radius:8px !important; font-size:1rem !important; font-weight:600 !important; cursor:pointer; transition:all 0.3s !important; }
#hubspot-form-container .hs-button:hover,
#hubspot-form-container button[type="submit"]:hover,
#hubspot-form-container input[type="submit"]:hover { background:#2d4a7a !important; transform:translateY(-1px); box-shadow:0 4px 12px rgba(26,43,74,0.3) !important; }
#hubspot-form-container .hs-submit .actions { text-align:right; }
/* Progress bar */
#hubspot-form-container .multi-step-progress,
#hubspot-form-container [class*="progress"] { accent-color:#5BC0EB; }
#hubspot-form-container .form-columns-0 .hs-progress-bar,
#hubspot-form-container progress,
#hubspot-form-container .hs_submit .hs-progress-bar-fill,
.hbspt-form .multi-container progress::-webkit-progress-value,
.hbspt-form progress::-webkit-progress-value { background-color:#5BC0EB !important; }
.hbspt-form progress::-moz-progress-bar { background-color:#5BC0EB !important; }
.hbspt-form progress { color:#5BC0EB !important; }
/* Error msgs */
#hubspot-form-container .hs-error-msgs label { color:#dc2626 !important; font-size:0.85rem; font-weight:400; }
