/**
 * Webtoz — Global Styles
 * Website: webtoz.com
 * Child theme of: GeneratePress
 *
 * Table of Contents:
 *  1. CSS Custom Properties (Design Tokens)
 *  2. Reset & Base Styles
 *  3. Typography
 *  4. Container & Layout Utilities
 *  5. Button System
 *  6. Form Elements
 *  7. Section Spacing & Backgrounds
 *  8. Cards & Panels
 *  9. Badges & Tags
 * 10. Dividers & Separators
 * 11. Image & Media Utilities
 * 12. Accessibility
 * 13. Animation Keyframes
 * 14. Print Styles
 */

/* ═══════════════════════════════════════════════════════════════ */
/* 1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)                       */
/* ═══════════════════════════════════════════════════════════════ */

:root {
    /* ── Brand Colors ── */
    --webtoz-navy: #0B1F3A;
    --webtoz-navy-light: #132D52;
    --webtoz-cobalt: #3D5AFE;
    --webtoz-cobalt-dark: #2A3FDB;
    --webtoz-cobalt-light: #6B7FFF;
    --webtoz-teal: #06B6D4;
    --webtoz-teal-dark: #0594AC;
    --webtoz-teal-light: #22D3EE;

    /* ── Neutral Colors ── */
    --webtoz-white: #FFFFFF;
    --webtoz-cloud: #F4F6F9;
    --webtoz-cloud-dark: #E8ECF2;
    --webtoz-charcoal: #1A1F2B;
    --webtoz-slate: #5A6478;
    --webtoz-slate-light: #8B95A8;

    /* ── Semantic Colors ── */
    --webtoz-success: #10B981;
    --webtoz-warning: #F59E0B;
    --webtoz-error: #EF4444;
    --webtoz-info: #3D5AFE;

    /* ── Typography ── */
    --webtoz-font-heading: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --webtoz-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --webtoz-font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    /* ── Font Sizes (clamp-based fluid scale) ── */
    --webtoz-text-xs: clamp(0.75rem, 1.5vw, 0.8125rem);
    --webtoz-text-sm: clamp(0.8125rem, 1.6vw, 0.875rem);
    --webtoz-text-base: clamp(0.9375rem, 1.8vw, 1.0625rem);
    --webtoz-text-lg: clamp(1.0625rem, 2vw, 1.1875rem);
    --webtoz-text-xl: clamp(1.1875rem, 2.2vw, 1.375rem);
    --webtoz-text-2xl: clamp(1.375rem, 2.5vw, 1.75rem);
    --webtoz-text-3xl: clamp(1.75rem, 3.5vw, 2.25rem);
    --webtoz-text-4xl: clamp(2rem, 4.5vw, 3rem);
    --webtoz-text-5xl: clamp(2.5rem, 5.5vw, 3.75rem);
    --webtoz-text-6xl: clamp(3rem, 7vw, 4.5rem);

    /* ── Spacing Scale ── */
    --webtoz-space-xs: 4px;
    --webtoz-space-sm: 8px;
    --webtoz-space-md: 16px;
    --webtoz-space-lg: 24px;
    --webtoz-space-xl: 32px;
    --webtoz-space-2xl: 48px;
    --webtoz-space-3xl: 64px;
    --webtoz-space-4xl: 96px;
    --webtoz-space-5xl: 128px;

    /* ── Border Radius ── */
    --webtoz-radius-sm: 6px;
    --webtoz-radius-md: 10px;
    --webtoz-radius-lg: 16px;
    --webtoz-radius-xl: 24px;
    --webtoz-radius-full: 9999px;

    /* ── Shadows ── */
    --webtoz-shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.06);
    --webtoz-shadow-md: 0 4px 16px rgba(11, 31, 58, 0.08);
    --webtoz-shadow-lg: 0 12px 40px rgba(11, 31, 58, 0.12);
    --webtoz-shadow-xl: 0 20px 60px rgba(11, 31, 58, 0.16);
    --webtoz-shadow-glow-cobalt: 0 0 24px rgba(61, 90, 254, 0.25);
    --webtoz-shadow-glow-teal: 0 0 24px rgba(6, 182, 212, 0.2);

    /* ── Transitions ── */
    --webtoz-transition-fast: 0.15s ease;
    --webtoz-transition-base: 0.25s ease;
    --webtoz-transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --webtoz-transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ── Z-Index Scale ── */
    --webtoz-z-dropdown: 100;
    --webtoz-z-sticky: 200;
    --webtoz-z-overlay: 300;
    --webtoz-z-modal: 400;
    --webtoz-z-toast: 500;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 2. RESET & BASE STYLES                                         */
/* ═══════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--webtoz-font-body);
    font-size: var(--webtoz-text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--webtoz-charcoal);
    background: var(--webtoz-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--webtoz-cobalt);
    text-decoration: none;
    transition: color var(--webtoz-transition-base);
}

a:hover {
    color: var(--webtoz-cobalt-dark);
}

ul,
ol {
    list-style: none;
}

/* Selection styling */
::selection {
    background: rgba(61, 90, 254, 0.18);
    color: var(--webtoz-navy);
}

::-moz-selection {
    background: rgba(61, 90, 254, 0.18);
    color: var(--webtoz-navy);
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--webtoz-cobalt);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 3. TYPOGRAPHY                                                  */
/* ═══════════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6,
.webtoz-heading {
    font-family: var(--webtoz-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--webtoz-navy);
    letter-spacing: -0.02em;
}

h1, .webtoz-h1 {
    font-size: var(--webtoz-text-5xl);
    margin-bottom: var(--webtoz-space-lg);
}

h2, .webtoz-h2 {
    font-size: var(--webtoz-text-4xl);
    margin-bottom: var(--webtoz-space-md);
}

h3, .webtoz-h3 {
    font-size: var(--webtoz-text-3xl);
    margin-bottom: var(--webtoz-space-md);
}

h4, .webtoz-h4 {
    font-size: var(--webtoz-text-2xl);
    margin-bottom: var(--webtoz-space-sm);
}

h5, .webtoz-h5 {
    font-size: var(--webtoz-text-xl);
    margin-bottom: var(--webtoz-space-sm);
}

h6, .webtoz-h6 {
    font-size: var(--webtoz-text-lg);
    margin-bottom: var(--webtoz-space-sm);
}

p {
    margin-bottom: var(--webtoz-space-md);
    color: var(--webtoz-slate);
}

p:last-child {
    margin-bottom: 0;
}

/* Accent heading underline */
.webtoz-heading-accent {
    position: relative;
    display: inline-block;
}

.webtoz-heading-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--webtoz-cobalt), var(--webtoz-teal));
    border-radius: 2px;
}

.webtoz-heading-accent.webtoz-heading-accent-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Gradient text */
.webtoz-text-gradient {
    background: linear-gradient(135deg, var(--webtoz-cobalt) 0%, var(--webtoz-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle style */
.webtoz-subtitle {
    font-size: var(--webtoz-text-lg);
    color: var(--webtoz-slate);
    line-height: 1.6;
    max-width: 680px;
}

.webtoz-subtitle-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Lead paragraph */
.webtoz-lead {
    font-size: var(--webtoz-text-xl);
    line-height: 1.6;
    color: var(--webtoz-charcoal);
}

/* Small / caption text */
.webtoz-text-small {
    font-size: var(--webtoz-text-sm);
    color: var(--webtoz-slate-light);
}

/* Code / technical text */
.webtoz-text-code {
    font-family: var(--webtoz-font-mono);
    font-size: 0.9em;
    background: rgba(61, 90, 254, 0.06);
    color: var(--webtoz-cobalt);
    padding: 2px 8px;
    border-radius: var(--webtoz-radius-sm);
    border: 1px solid rgba(61, 90, 254, 0.1);
}

/* ═══════════════════════════════════════════════════════════════ */
/* 4. CONTAINER & LAYOUT UTILITIES                                */
/* ═══════════════════════════════════════════════════════════════ */

.webtoz-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--webtoz-space-xl);
}

.webtoz-container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--webtoz-space-xl);
}

.webtoz-container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--webtoz-space-xl);
}

/* Grid system */
.webtoz-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--webtoz-space-2xl);
}

.webtoz-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--webtoz-space-xl);
}

.webtoz-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--webtoz-space-xl);
}

/* Flex utilities */
.webtoz-flex {
    display: flex;
}

.webtoz-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.webtoz-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.webtoz-flex-col {
    flex-direction: column;
}

.webtoz-flex-wrap {
    flex-wrap: wrap;
}

.webtoz-gap-sm { gap: var(--webtoz-space-sm); }
.webtoz-gap-md { gap: var(--webtoz-space-md); }
.webtoz-gap-lg { gap: var(--webtoz-space-lg); }
.webtoz-gap-xl { gap: var(--webtoz-space-xl); }
.webtoz-gap-2xl { gap: var(--webtoz-space-2xl); }

/* ═══════════════════════════════════════════════════════════════ */
/* 5. BUTTON SYSTEM                                               */
/* ═══════════════════════════════════════════════════════════════ */

.webtoz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--webtoz-font-body);
    font-weight: 600;
    font-size: var(--webtoz-text-sm);
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--webtoz-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--webtoz-transition-base);
    position: relative;
    overflow: hidden;
}

/* Primary Button */
.webtoz-btn-primary {
    background: var(--webtoz-cobalt);
    color: var(--webtoz-white);
    border-color: var(--webtoz-cobalt);
}

.webtoz-btn-primary:hover {
    background: var(--webtoz-cobalt-dark);
    border-color: var(--webtoz-cobalt-dark);
    color: var(--webtoz-white);
    transform: translateY(-2px);
    box-shadow: var(--webtoz-shadow-glow-cobalt);
}

.webtoz-btn-primary:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Secondary / Outline Button */
.webtoz-btn-outline {
    background: transparent;
    color: var(--webtoz-cobalt);
    border-color: var(--webtoz-cobalt);
}

.webtoz-btn-outline:hover {
    background: var(--webtoz-cobalt);
    color: var(--webtoz-white);
    transform: translateY(-2px);
    box-shadow: var(--webtoz-shadow-glow-cobalt);
}

/* Light Outline (for dark backgrounds) */
.webtoz-btn-outline-light {
    background: transparent;
    color: var(--webtoz-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.webtoz-btn-outline-light:hover {
    background: var(--webtoz-white);
    color: var(--webtoz-navy);
    border-color: var(--webtoz-white);
    transform: translateY(-2px);
}

/* Teal Accent Button */
.webtoz-btn-teal {
    background: var(--webtoz-teal);
    color: var(--webtoz-white);
    border-color: var(--webtoz-teal);
}

.webtoz-btn-teal:hover {
    background: var(--webtoz-teal-dark);
    border-color: var(--webtoz-teal-dark);
    color: var(--webtoz-white);
    transform: translateY(-2px);
    box-shadow: var(--webtoz-shadow-glow-teal);
}

/* Ghost Button */
.webtoz-btn-ghost {
    background: transparent;
    color: var(--webtoz-slate);
    border-color: transparent;
    padding: 10px 20px;
}

.webtoz-btn-ghost:hover {
    background: rgba(61, 90, 254, 0.06);
    color: var(--webtoz-cobalt);
}

/* Button Sizes */
.webtoz-btn-sm {
    padding: 10px 20px;
    font-size: var(--webtoz-text-xs);
    border-radius: var(--webtoz-radius-sm);
}

.webtoz-btn-lg {
    padding: 18px 36px;
    font-size: var(--webtoz-text-base);
    border-radius: var(--webtoz-radius-lg);
}

.webtoz-btn-xl {
    padding: 22px 44px;
    font-size: var(--webtoz-text-lg);
    border-radius: var(--webtoz-radius-lg);
}

/* Full width */
.webtoz-btn-full {
    width: 100%;
    justify-content: center;
}

/* Button with icon animation */
.webtoz-btn svg {
    transition: transform var(--webtoz-transition-base);
}

.webtoz-btn:hover svg {
    transform: translateX(3px);
}

/* Disabled state */
.webtoz-btn:disabled,
.webtoz-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 6. FORM ELEMENTS                                               */
/* ═══════════════════════════════════════════════════════════════ */

.webtoz-input,
.webtoz-textarea,
.webtoz-select {
    width: 100%;
    font-family: var(--webtoz-font-body);
    font-size: var(--webtoz-text-base);
    color: var(--webtoz-charcoal);
    background: var(--webtoz-white);
    border: 2px solid var(--webtoz-cloud-dark);
    border-radius: var(--webtoz-radius-md);
    padding: 14px 18px;
    transition: all var(--webtoz-transition-base);
    outline: none;
}

.webtoz-input:focus,
.webtoz-textarea:focus,
.webtoz-select:focus {
    border-color: var(--webtoz-cobalt);
    box-shadow: 0 0 0 4px rgba(61, 90, 254, 0.08);
}

.webtoz-input::placeholder,
.webtoz-textarea::placeholder {
    color: var(--webtoz-slate-light);
}

.webtoz-textarea {
    min-height: 140px;
    resize: vertical;
}

.webtoz-label {
    display: block;
    font-size: var(--webtoz-text-sm);
    font-weight: 600;
    color: var(--webtoz-navy);
    margin-bottom: 6px;
}

.webtoz-form-group {
    margin-bottom: var(--webtoz-space-lg);
}

/* ═══════════════════════════════════════════════════════════════ */
/* 7. SECTION SPACING & BACKGROUNDS                               */
/* ═══════════════════════════════════════════════════════════════ */

.webtoz-section {
    padding: var(--webtoz-space-4xl) 0;
}

.webtoz-section-sm {
    padding: var(--webtoz-space-3xl) 0;
}

.webtoz-section-lg {
    padding: var(--webtoz-space-5xl) 0;
}

/* Section backgrounds */
.webtoz-bg-navy {
    background: var(--webtoz-navy);
    color: var(--webtoz-white);
}

.webtoz-bg-navy h1,
.webtoz-bg-navy h2,
.webtoz-bg-navy h3,
.webtoz-bg-navy h4,
.webtoz-bg-navy h5,
.webtoz-bg-navy h6 {
    color: var(--webtoz-white);
}

.webtoz-bg-navy p {
    color: rgba(255, 255, 255, 0.7);
}

.webtoz-bg-cloud {
    background: var(--webtoz-cloud);
}

.webtoz-bg-gradient {
    background: linear-gradient(135deg, var(--webtoz-navy) 0%, #132D52 50%, var(--webtoz-navy) 100%);
}

.webtoz-bg-gradient-cobalt {
    background: linear-gradient(135deg, var(--webtoz-cobalt) 0%, var(--webtoz-cobalt-dark) 50%, #1A34D4 100%);
}

/* Section header */
.webtoz-section-header {
    text-align: center;
    margin-bottom: var(--webtoz-space-3xl);
}

.webtoz-section-header-left {
    text-align: left;
}

.webtoz-section-label {
    display: inline-block;
    font-size: var(--webtoz-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--webtoz-cobalt);
    margin-bottom: var(--webtoz-space-sm);
}

.webtoz-bg-navy .webtoz-section-label,
.webtoz-bg-gradient .webtoz-section-label {
    color: var(--webtoz-teal);
}

/* ═══════════════════════════════════════════════════════════════ */
/* 8. CARDS & PANELS                                              */
/* ═══════════════════════════════════════════════════════════════ */

.webtoz-card {
    background: var(--webtoz-white);
    border: 1px solid rgba(11, 31, 58, 0.06);
    border-radius: var(--webtoz-radius-lg);
    padding: var(--webtoz-space-xl);
    transition: all var(--webtoz-transition-slow);
}

.webtoz-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--webtoz-shadow-lg);
    border-color: rgba(61, 90, 254, 0.12);
}

.webtoz-card-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--webtoz-radius-lg);
    padding: var(--webtoz-space-xl);
    backdrop-filter: blur(12px);
}

.webtoz-card-navy {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--webtoz-radius-lg);
    padding: var(--webtoz-space-xl);
}

/* Icon box in cards */
.webtoz-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--webtoz-radius-md);
    background: rgba(61, 90, 254, 0.08);
    color: var(--webtoz-cobalt);
    margin-bottom: var(--webtoz-space-lg);
    font-size: 24px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 9. BADGES & TAGS                                               */
/* ═══════════════════════════════════════════════════════════════ */

.webtoz-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--webtoz-text-xs);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--webtoz-radius-full);
    white-space: nowrap;
}

.webtoz-badge-cobalt {
    background: rgba(61, 90, 254, 0.1);
    color: var(--webtoz-cobalt);
}

.webtoz-badge-teal {
    background: rgba(6, 182, 212, 0.1);
    color: var(--webtoz-teal-dark);
}

.webtoz-badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--webtoz-success);
}

.webtoz-badge-navy {
    background: rgba(11, 31, 58, 0.08);
    color: var(--webtoz-navy);
}

/* ═══════════════════════════════════════════════════════════════ */
/* 10. DIVIDERS & SEPARATORS                                      */
/* ═══════════════════════════════════════════════════════════════ */

.webtoz-divider {
    width: 100%;
    height: 1px;
    background: rgba(11, 31, 58, 0.08);
    border: none;
    margin: var(--webtoz-space-xl) 0;
}

.webtoz-divider-light {
    background: rgba(255, 255, 255, 0.1);
}

.webtoz-divider-gradient {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--webtoz-cobalt), var(--webtoz-teal), transparent);
    border: none;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 11. IMAGE & MEDIA UTILITIES                                    */
/* ═══════════════════════════════════════════════════════════════ */

.webtoz-img-rounded {
    border-radius: var(--webtoz-radius-lg);
}

.webtoz-img-shadow {
    box-shadow: var(--webtoz-shadow-lg);
}

.webtoz-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 12. ACCESSIBILITY                                              */
/* ═══════════════════════════════════════════════════════════════ */

/* Screen reader only */
.webtoz-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* 13. ANIMATION KEYFRAMES                                        */
/* ═══════════════════════════════════════════════════════════════ */

@keyframes webtoz-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes webtoz-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes webtoz-fade-down {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes webtoz-scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes webtoz-pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(61, 90, 254, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(61, 90, 254, 0.4);
    }
}

@keyframes webtoz-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes webtoz-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Utility animation classes */
.webtoz-animate-fade-in {
    animation: webtoz-fade-in 0.6s ease forwards;
}

.webtoz-animate-fade-up {
    animation: webtoz-fade-up 0.7s ease forwards;
}

/* Stagger delay utilities */
.webtoz-delay-100 { animation-delay: 0.1s; }
.webtoz-delay-200 { animation-delay: 0.2s; }
.webtoz-delay-300 { animation-delay: 0.3s; }
.webtoz-delay-400 { animation-delay: 0.4s; }
.webtoz-delay-500 { animation-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════ */
/* 14. RESPONSIVE BREAKPOINTS (Shared across all stylesheets)     */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .webtoz-grid-3,
    .webtoz-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .webtoz-section {
        padding: var(--webtoz-space-3xl) 0;
    }

    .webtoz-section-lg {
        padding: var(--webtoz-space-4xl) 0;
    }
}

@media (max-width: 768px) {
    .webtoz-grid-2,
    .webtoz-grid-3,
    .webtoz-grid-4 {
        grid-template-columns: 1fr;
    }

    .webtoz-container,
    .webtoz-container-narrow,
    .webtoz-container-wide {
        padding: 0 var(--webtoz-space-lg);
    }

    .webtoz-section {
        padding: var(--webtoz-space-2xl) 0;
    }

    .webtoz-section-lg {
        padding: var(--webtoz-space-3xl) 0;
    }

    .webtoz-section-header {
        margin-bottom: var(--webtoz-space-2xl);
    }

    .webtoz-btn-lg {
        padding: 16px 28px;
    }

    .webtoz-btn-xl {
        padding: 18px 32px;
    }

    .webtoz-hide-mobile {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .webtoz-container,
    .webtoz-container-narrow,
    .webtoz-container-wide {
        padding: 0 var(--webtoz-space-md);
    }

    .webtoz-section {
        padding: var(--webtoz-space-xl) 0;
    }

    .webtoz-section-header {
        margin-bottom: var(--webtoz-space-xl);
    }

    .webtoz-flex-mobile-col {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* 15. PRINT STYLES                                               */
/* ═══════════════════════════════════════════════════════════════ */

@media print {
    .webtoz-header,
    .webtoz-footer,
    .webtoz-back-to-top,
    .webtoz-mobile-drawer,
    .webtoz-mobile-overlay,
    .webtoz-nav-cta {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .webtoz-container {
        max-width: 100%;
        padding: 0;
    }
}