/* ==========================================================================
   1. Design Tokens (Variables)
   ========================================================================== */
:root {
    /* Colors */
    --color-bg: #F0EDE4;
    --color-surface: #FFFFFF;
    --color-primary: #3D3D61;
    --color-accent: #9B8EC4;
    --color-accent-2: #C8BFE0;
    --color-text: #3E5158;
    --color-muted: #55545C;
    --color-shadow: rgba(61, 61, 97, 0.06);

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Spacing (base 8px) */
    --space-xs: 4px;
    --space-s: 8px;
    --space-m: 16px;
    --space-l: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-section: 56px;

    /* Border Radius */
    --radius-card: 16px;
    --radius-btn: 12px;
    --radius-hero: 24px;
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography — Mobile-first sizes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    margin-bottom: var(--space-m);
    color: var(--color-text);
}

h1 { font-size: 1.75rem; font-weight: 700; }
h2 { font-size: 1.375rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

p {
    margin-bottom: var(--space-m);
    color: var(--color-muted);
    line-height: 1.6;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent);
}

a:focus-visible {
    outline: 3px solid rgba(155, 142, 196, 0.4);
    outline-offset: 2px;
    border-radius: 4px;
}

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

/* ==========================================================================
   3. Layout & Grid
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--space-section) 0;
}

.grid {
    display: grid;
    gap: var(--space-l);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* ==========================================================================
   4. Components — Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-s);
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: transform 0.18s ease,
                box-shadow 0.18s ease,
                background-color 0.18s ease,
                border-color 0.18s ease;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #FFFFFF;
    box-shadow: 0 8px 24px var(--color-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(155, 142, 196, 0.3);
    background-color: #8A7BB5;
    color: #FFFFFF;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(155, 142, 196, 0.25);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(155, 142, 196, 0.4);
    outline-offset: 3px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: rgba(155, 142, 196, 0.1);
    border-color: #8A7BB5;
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary:focus-visible {
    outline: 3px solid rgba(155, 142, 196, 0.4);
    outline-offset: 3px;
}

.btn-small {
    padding: 10px 18px;
    font-size: 0.8125rem;
}

/* ==========================================================================
   5. Components — Cards
   ========================================================================== */
.card {
    background-color: var(--color-surface);
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: 0 8px 24px var(--color-shadow);
    border: 1px solid rgba(61, 61, 97, 0.04);
    transition: transform 0.36s cubic-bezier(.22, .9, .33, 1),
                box-shadow 0.36s cubic-bezier(.22, .9, .33, 1),
                border-color 0.36s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px rgba(61, 61, 97, 0.1);
    border-color: rgba(61, 61, 97, 0.08);
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(155, 142, 196, 0.12);
    color: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-m);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.card:hover .card-icon {
    background-color: rgba(155, 142, 196, 0.22);
    transform: scale(1.05);
}

/* ==========================================================================
   6. Components — Forms
   ========================================================================== */
.form-group {
    margin-bottom: var(--space-m);
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.875rem;
}

input, textarea, select {
    width: 100%;
    padding: 12px 16px;
    min-height: 46px;
    border: 1.5px solid #E0E0E0;
    border-radius: var(--radius-btn);
    background-color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

input:hover, textarea:hover, select:hover {
    border-color: #C0C0C0;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(155, 142, 196, 0.18);
}

input::placeholder, textarea::placeholder {
    color: var(--color-muted);
    opacity: 0.7;
}

textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.5;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B6B6B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Form Errors */
input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
    border-color: #E74C3C;
}

.form-error {
    color: #E74C3C;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

/* ==========================================================================
   7. Header
   ========================================================================== */
.site-header {
    background-color: rgba(240, 237, 228, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-m) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-m);
}

.nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-text);
    padding: 6px 4px;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   8. Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: var(--space-xxl) 0;
    margin-top: 0;
}

.site-footer p, .site-footer a {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-s);
}

.site-footer a {
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--color-accent);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
    text-align: center;
}

/* ==========================================================================
   9. Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4E4E7A 100%);
    color: #FFFFFF;
    padding: var(--space-xl) 0 0; /* Reduced height */
    border-radius: var(--radius-hero);
    margin: var(--space-m) 16px;
    position: relative;
    margin-bottom: 80px; /* Add margin to compensate for image breakout */
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    padding: 0 20px;
}

.hero h1 {
    color: #FFFFFF;
    margin-bottom: var(--space-m);
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.0625rem;
    margin-bottom: var(--space-l);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-m);
}

.hero .btn-secondary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #FFFFFF;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    margin-bottom: -60px; /* Break out bottom */
    width: 100%;
    padding: 0 20px;
}

.hero-image-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s cubic-bezier(.22, .9, .33, 1),
                box-shadow 0.4s cubic-bezier(.22, .9, .33, 1);
}

.hero-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.3);
}

.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.hero-decoration {
    position: absolute;
    top: 85%;
    left: 48%;
    transform: translate(-46%, -50%) scale(0.78);
    transform-origin: center;
    z-index: 11;
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* ==========================================================================
   10. Services Section
   ========================================================================== */
.services {
    background-color: var(--color-bg);
}

.section-header {
    margin-bottom: var(--space-xxl);
    max-width: 560px;
}

.section-header p {
    margin-bottom: 0;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    text-align: left;
    transition: background-color 0.4s cubic-bezier(.22,.9,.33,1),
                color 0.4s cubic-bezier(.22,.9,.33,1),
                transform 0.36s cubic-bezier(.22,.9,.33,1),
                box-shadow 0.4s cubic-bezier(.22,.9,.33,1);
}

.service-card h3 {
    margin-bottom: var(--space-s);
    transition: color 0.4s cubic-bezier(.22,.9,.33,1);
}

.service-card p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    transition: color 0.4s cubic-bezier(.22,.9,.33,1);
}

.service-card .card-icon {
    transition: background-color 0.4s cubic-bezier(.22,.9,.33,1),
                color 0.4s cubic-bezier(.22,.9,.33,1),
                transform 0.2s ease;
}

/* Highlight card on hover / touch */
.service-card:hover,
.service-card:active {
    background-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 16px 40px rgba(61, 61, 97, 0.2);
}

.service-card:hover h3,
.service-card:active h3 {
    color: #FFFFFF;
}

.service-card:hover p,
.service-card:active p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card:hover .card-icon,
.service-card:active .card-icon {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--color-accent);
}

/* ==========================================================================
   11. Value Proposition Section
   ========================================================================== */
.value-prop {
    background-color: #FFFFFF;
}

.align-center {
    align-items: center;
}

.value-content h2 {
    margin-bottom: var(--space-m);
}

.value-content > p {
    margin-bottom: var(--space-l);
}

.benefits-list {
    list-style: none;
    margin-bottom: var(--space-l);
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: var(--space-m);
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.icon-accent {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
    width: 20px;
    height: 20px;
}

.mt-l { margin-top: var(--space-l); }
.mt-m { margin-top: var(--space-m); }

.rounded-image {
    border-radius: 24px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.4s cubic-bezier(.22, .9, .33, 1),
                box-shadow 0.4s cubic-bezier(.22, .9, .33, 1);
}

.rounded-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(61, 61, 97, 0.15);
}

.shadow-lg {
    box-shadow: 0 20px 50px rgba(61, 61, 97, 0.1);
}

/* ==========================================================================
   12. Packs Section
   ========================================================================== */
.packs {
    background-color: var(--color-bg);
}

.pack-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(61, 61, 97, 0.08);
    padding: var(--space-l);
    position: relative;
    background-color: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: 0 4px 12px rgba(61, 61, 97, 0.04);
    transition: transform 0.36s cubic-bezier(.22, .9, .33, 1),
                box-shadow 0.36s cubic-bezier(.22, .9, .33, 1),
                border-color 0.36s ease;
}

.pack-card:hover {
    border-color: rgba(155, 142, 196, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(61, 61, 97, 0.1);
}

.pack-card-featured {
    border: 2px solid var(--color-accent);
    box-shadow: 0 12px 32px rgba(155, 142, 196, 0.15);
}

.pack-card-featured:hover {
    border-color: var(--color-accent);
    box-shadow: 0 20px 48px rgba(155, 142, 196, 0.25);
}

.pack-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(155, 142, 196, 0.35);
    z-index: 2;
}

.pack-header {
    margin-bottom: var(--space-m);
    padding-bottom: var(--space-m);
    border-bottom: 1px solid rgba(61, 61, 97, 0.06);
}

.pack-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-m);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.pack-card:hover .pack-icon {
    transform: scale(1.08);
    background-color: #4E4E7A;
}

.pack-target {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.pack-body {
    flex-grow: 1;
    margin-bottom: var(--space-l);
}

.pack-body h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    margin-bottom: var(--space-s);
}

.pack-features {
    list-style: none;
    margin-bottom: var(--space-m);
}

.pack-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-s);
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.5;
}

.pack-features i {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.pack-note {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--color-muted);
    margin-bottom: var(--space-m);
}

.pack-result {
    background-color: rgba(155, 142, 196, 0.07);
    padding: var(--space-m);
    border-radius: 10px;
    font-size: 0.875rem;
    color: var(--color-text);
    border-left: 3px solid var(--color-accent);
    line-height: 1.6;
}

.pack-footer {
    margin-top: auto;
    padding-top: var(--space-s);
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   13. Custom Solutions Section
   ========================================================================== */
.custom-solutions {
    background-color: #FFFFFF;
}

.custom-box {
    background: linear-gradient(145deg, var(--color-bg) 0%, #FFFFFF 100%);
    padding: var(--space-xxl) var(--space-xl);
    border-radius: var(--radius-hero);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(61, 61, 97, 0.06);
    box-shadow: 0 12px 32px rgba(61, 61, 97, 0.04);
    position: relative;
    overflow: hidden;
}

.custom-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
}

.custom-box h2 {
    margin-bottom: var(--space-s);
}

.custom-box > p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.custom-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-s);
    margin: var(--space-l) 0;
}

.tag {
    background-color: #FFFFFF;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    border: 1px solid rgba(61, 61, 97, 0.1);
    transition: all 0.2s ease;
    cursor: default;
}

.tag:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 61, 97, 0.18);
}

/* ==========================================================================
   14. Process Section
   ========================================================================== */
.process {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4E4E7A 100%);
    color: #FFFFFF;
    border-radius: var(--radius-hero);
    margin: 0 16px;
    box-shadow: 0 24px 48px rgba(61, 61, 97, 0.15);
}

.text-white {
    color: #FFFFFF !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

.process-step {
    text-align: center;
    position: relative;
    padding: var(--space-m);
}

.step-number {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-m);
    border: 2px solid rgba(155, 142, 196, 0.35);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background-color: rgba(155, 142, 196, 0.18);
}

.process-step h3 {
    margin-bottom: var(--space-xs);
}

.process-step p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==========================================================================
   15. Contact Section
   ========================================================================== */
.contact {
    background-color: var(--color-bg);
}

.contact-content h2 {
    margin-bottom: var(--space-s);
}

.contact-content > p {
    max-width: 420px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.9375rem;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    padding: var(--space-xl) var(--space-l);
}

.contact-form .btn-primary {
    margin-top: var(--space-s);
}

/* ==========================================================================
   17. Scroll Indicator
   ========================================================================== */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-s);
    padding: var(--space-l) 0;
    text-align: center;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-s);
    text-decoration: none;
    color: var(--color-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.scroll-indicator a:hover {
    color: var(--color-accent);
}

.scroll-indicator .scroll-arrow {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ==========================================================================
   18. Entrance Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s cubic-bezier(.22, .9, .33, 1),
                transform 0.5s cubic-bezier(.22, .9, .33, 1);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for grid children */
.grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.grid .fade-in:nth-child(6) { transition-delay: 0.40s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .card, .btn, .hero-image-card, .tag, .step-number, .nav-link::after {
        transition: none !important;
    }
}

/* ==========================================================================
   19. Utility
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   20. Media Queries — Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    :root {
        --space-section: 72px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .container { padding: 0 24px; }

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

    .hero {
        margin: var(--space-l) 20px;
        padding: var(--space-xl) var(--space-l) 0;
        margin-bottom: 100px;
    }

    .hero-image-wrapper {
        margin-top: var(--space-xl);
        margin-bottom: -80px;
    }

    .hero-image-card {
        max-width: 400px;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .contact-form {
        padding: var(--space-xl);
    }

    .process {
        margin: 0 20px;
    }
}

/* ==========================================================================
   21. Media Queries — Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    :root {
        --space-section: 80px;
    }

    h1 { font-size: 2.125rem; }

    .container { padding: 0 32px; }

    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }

    /* Hero Desktop */
    .hero {
        margin: 60px auto;
        max-width: 1100px;
        padding: 48px 60px;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .hero-content {
        flex: 1;
        padding-right: 40px;
        max-width: 550px;
    }

    .hero-image-wrapper {
        flex: 0 0 360px;
        position: relative;
        margin-top: -100px;
        margin-bottom: -100px;
        z-index: 10;
    }

    .hero-image-card {
        max-width: 100%;
        height: 480px;
        border-radius: 24px;
    }
    
    .hero-img {
        height: 100%;
        object-fit: cover;
    }

    .hero-decoration {
        top: 86%;
        left: 53%;
        transform: translate(-52%, -50%) scale(1.04);
    }

    /* Process connector line */
    .process {
        margin: 0 auto;
        max-width: 1200px;
    }

    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 48px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05),
            rgba(155, 142, 196, 0.25),
            rgba(255, 255, 255, 0.05)
        );
        z-index: 0;
    }

    .step-number {
        position: relative;
        z-index: 1;
        background-color: #4E4E7A;
    }

    /* Contact padding */
    .contact-content {
        padding-right: var(--space-xxl);
    }
}

/* ==========================================================================
   22. Media Queries — Large Desktop (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
    h1 { font-size: 2.25rem; }

    .hero-subtitle { font-size: 1.0625rem; }
}
