/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6;
}

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

.entry-content {
    margin-top: 20px;
}

/* Container & Grid */
.container,
.container-fluid,
[class*=col-] {
    padding: 0 15px;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* Columns */
.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

/* Medium screens (≥768px) */
@media (min-width: 768px) {
    .col-md-1 { width: 8.33%; }
    .col-md-2 { width: 16.66%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.33%; }
    .col-md-5 { width: 41.66%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.33%; }
    .col-md-8 { width: 66.66%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.33%; }
    .col-md-11 { width: 91.66%; }
    .col-md-12 { width: 100%; }
}

/* Large screens (≥992px) */
@media (min-width: 992px) {
    .col-lg-1 { width: 8.33%; }
    .col-lg-2 { width: 16.66%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.33%; }
    .col-lg-5 { width: 41.66%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.33%; }
    .col-lg-8 { width: 66.66%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.33%; }
    .col-lg-11 { width: 91.66%; }
    .col-lg-12 { width: 100%; }
}

/* Extra large screens (≥1200px) */
@media (min-width: 1200px) {
    .col-xl-1 { width: 8.33%; }
    .col-xl-2 { width: 16.66%; }
    .col-xl-3 { width: 25%; }
    .col-xl-4 { width: 33.33%; }
    .col-xl-5 { width: 41.66%; }
    .col-xl-6 { width: 50%; }
    .col-xl-7 { width: 58.33%; }
    .col-xl-8 { width: 66.66%; }
    .col-xl-9 { width: 75%; }
    .col-xl-10 { width: 83.33%; }
    .col-xl-11 { width: 91.66%; }
    .col-xl-12 { width: 100%; }
}

/* Offsets */
.offset-1 { margin-left: 8.33%; }
.offset-2 { margin-left: 16.66%; }
.offset-3 { margin-left: 25%; }

/* Spacing - Padding */
.p-0 { padding: 0 !important; }
.p-1 { padding: .25rem !important; }
.p-2 { padding: .5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: .25rem !important; }
.pt-2 { padding-top: .5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: .25rem !important; }
.pr-2 { padding-right: .5rem !important; }
.pr-3 { padding-right: 1rem !important; }
.pr-4 { padding-right: 1.5rem !important; }
.pr-5 { padding-right: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: .25rem !important; }
.pb-2 { padding-bottom: .5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: .25rem !important; }
.pl-2 { padding-left: .5rem !important; }
.pl-3 { padding-left: 1rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.pl-5 { padding-left: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: .25rem !important; padding-right: .25rem !important; }
.px-2 { padding-left: .5rem !important; padding-right: .5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* Spacing - Margin */
.m-0 { margin: 0 !important; }
.m-1 { margin: .25rem !important; }
.m-2 { margin: .5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }
.m-auto { margin: auto !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .25rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-auto { margin-top: auto !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: .25rem !important; }
.mr-2 { margin-right: .5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }
.mr-auto { margin-right: auto !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .25rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-auto { margin-bottom: auto !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: .25rem !important; }
.ml-2 { margin-left: .5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }
.ml-auto { margin-left: auto !important; }

.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: .25rem !important; margin-right: .25rem !important; }
.mx-2 { margin-left: .5rem !important; margin-right: .5rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: .25rem !important; margin-bottom: .25rem !important; }
.my-2 { margin-top: .5rem !important; margin-bottom: .5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }

/* Typography */
.fw-light { font-weight: 300 !important; }
.fw-normal { font-weight: 400 !important; }
.fw-medium { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }
.fw-bolder { font-weight: 800 !important; }

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

.text-lowercase { text-transform: lowercase !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.text-decoration-none { text-decoration: none !important; }
.text-decoration-underline { text-decoration: underline !important; }
.text-decoration-line-through { text-decoration: line-through !important; }

.fs-1 { font-size: .75rem !important; }
.fs-2 { font-size: .875rem !important; }
.fs-3 { font-size: 1rem !important; }
.fs-4 { font-size: 1.125rem !important; }
.fs-5 { font-size: 1.25rem !important; }
.fs-6 { font-size: 1.5rem !important; }
.fs-7 { font-size: 2rem !important; }
.fs-8 { font-size: 2.5rem !important; }

.lh-1 { line-height: 1 !important; }
.lh-sm { line-height: 1.25 !important; }
.lh-base { line-height: 1.6 !important; }
.lh-lg { line-height: 1.8 !important; }

/* Display */
.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-grid { display: grid !important; }

@media (min-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-inline { display: inline !important; }
    .d-md-inline-block { display: inline-block !important; }
    .d-md-block { display: block !important; }
    .d-md-flex { display: flex !important; }
    .d-md-inline-flex { display: inline-flex !important; }
    .d-md-grid { display: grid !important; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-inline { display: inline !important; }
    .d-lg-inline-block { display: inline-block !important; }
    .d-lg-block { display: block !important; }
    .d-lg-flex { display: flex !important; }
    .d-lg-inline-flex { display: inline-flex !important; }
    .d-lg-grid { display: grid !important; }
}

.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* Flexbox */
.flex-row { flex-direction: row !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column { flex-direction: column !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }
.justify-content-evenly { justify-content: space-evenly !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

.align-self-auto { align-self: auto !important; }
.align-self-start { align-self: flex-start !important; }
.align-self-end { align-self: flex-end !important; }
.align-self-center { align-self: center !important; }
.align-self-baseline { align-self: baseline !important; }
.align-self-stretch { align-self: stretch !important; }

.flex-grow-0 { flex-grow: 0 !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-shrink-1 { flex-shrink: 1 !important; }

/* Position */
.position-static { position: static !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

.top-0 { top: 0 !important; }
.top-50 { top: 50% !important; }
.top-100 { top: 100% !important; }

.right-0 { right: 0 !important; }
.right-50 { right: 50% !important; }
.right-100 { right: 100% !important; }

.bottom-0 { bottom: 0 !important; }
.bottom-50 { bottom: 50% !important; }
.bottom-100 { bottom: 100% !important; }

.left-0 { left: 0 !important; }
.left-50 { left: 50% !important; }
.left-100 { left: 100% !important; }

.translate-middle { transform: translate(-50%, -50%) !important; }
.translate-middle-x { transform: translateX(-50%) !important; }
.translate-middle-y { transform: translateY(-50%) !important; }

/* Z-index */
.z-0 { z-index: 0 !important; }
.z-1 { z-index: 1 !important; }
.z-2 { z-index: 2 !important; }
.z-3 { z-index: 3 !important; }
.z-4 { z-index: 4 !important; }
.z-5 { z-index: 5 !important; }
.z-10 { z-index: 10 !important; }
.z-100 { z-index: 100 !important; }
.z-1000 { z-index: 1000 !important; }

/* Sizing */
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }
.w-max-100 { max-width: 100% !important; }

.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }
.h-max-100 { max-height: 100% !important; }

.vw-100 { width: 100vw !important; }
.vh-100 { height: 100vh !important; }

.min-vw-100 { min-width: 100vw !important; }
.min-vh-100 { min-height: 100vh !important; }

.max-vw-100 { max-width: 100vw !important; }
.max-vh-100 { max-height: 100vh !important; }

/* Borders */
.border { border: 1px solid #dee2e6 !important; }
.border-0 { border: 0 !important; }

.border-1 { border-width: 1px !important; }
.border-2 { border-width: 2px !important; }
.border-3 { border-width: 3px !important; }
.border-4 { border-width: 4px !important; }
.border-5 { border-width: 5px !important; }

.rounded { border-radius: .25rem !important; }
.rounded-sm { border-radius: .125rem !important; }
.rounded-lg { border-radius: .5rem !important; }
.rounded-xl { border-radius: 1rem !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }
.rounded-0 { border-radius: 0 !important; }

/* Shadows */
.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; }
.shadow { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; }
.shadow-none { box-shadow: none !important; }

/* Colors - Text */
.text-primary { color: #007bff !important; }
.text-secondary { color: #6c757d !important; }
.text-muted { color: #6c757d !important; }
.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }
.text-warning { color: #ffc107 !important; }
.text-info { color: #17a2b8 !important; }
.text-light { color: #f8f9fa !important; }
.text-dark { color: #343a40 !important; }
.text-white { color: #fff !important; }
.text-black { color: #000 !important; }

/* Colors - Background */
.bg-primary { background-color: #007bff !important; }
.bg-secondary { background-color: #6c757d !important; }
.bg-success { background-color: #28a745 !important; }
.bg-danger { background-color: #dc3545 !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-info { background-color: #17a2b8 !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-dark { background-color: #343a40 !important; }
.bg-white { background-color: #fff !important; }
.bg-transparent { background-color: transparent !important; }

/* Opacity */
.opacity-0 { opacity: 0 !important; }
.opacity-25 { opacity: .25 !important; }
.opacity-50 { opacity: .5 !important; }
.opacity-75 { opacity: .75 !important; }
.opacity-100 { opacity: 1 !important; }

/* Cursor */
.cursor-pointer { cursor: pointer !important; }
.cursor-default { cursor: default !important; }
.cursor-not-allowed { cursor: not-allowed !important; }
.cursor-text { cursor: text !important; }
.cursor-move { cursor: move !important; }

/* User Select */
.user-select-all { user-select: all !important; }
.user-select-auto { user-select: auto !important; }
.user-select-none { user-select: none !important; }

/* Buttons */
.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: .75rem 1.5rem;
    line-height: 1.5;
    border-radius: .375rem;
    transition: .2s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .6rem 1rem;
    font-size: .875rem;
    border-radius: .5rem;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: .5rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-group {
    display: inline-flex;
    border-radius: .375rem;
}

.btn-group .btn {
    border-radius: 0;
    margin-left: -1px;
}

.btn-group .btn:first-child {
    border-top-left-radius: .375rem;
    border-bottom-left-radius: .375rem;
    margin-left: 0;
}

.btn-group .btn:last-child {
    border-top-right-radius: .375rem;
    border-bottom-right-radius: .375rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.btn-icon-only {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.btn-fab {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
}

.btn-fab:hover {
    transform: scale(1.05);
}

.btn-pulse {
    animation: 2s infinite pulse;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,99,235,.7); }
    70% { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

.btn:focus {
    outline: #93c5fd solid 2px;
    outline-offset: 2px;
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 1rem;
    height: 1rem;
    top: 50%;
    left: 50%;
    margin-left: -.5rem;
    margin-top: -.5rem;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: 1s linear infinite spin;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.disabled,
.btn:disabled {
    opacity: .65;
    pointer-events: none;
    cursor: not-allowed;
}

/* Button Colors */
.btn-primary {
    color: #fff;
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-secondary {
    color: #fff;
    background-color: #6b7280;
    border-color: #6b7280;
}

.btn-secondary:hover {
    background-color: #4b5563;
    border-color: #4b5563;
}

.btn-success {
    color: #fff;
    background-color: #10b981;
    border-color: #10b981;
}

.btn-success:hover {
    background-color: #059669;
    border-color: #059669;
}

.btn-danger {
    color: #fff;
    background-color: #ef4444;
    border-color: #ef4444;
}

.btn-danger:hover {
    background-color: #dc2626;
    border-color: #dc2626;
}

.btn-warning {
    color: #000;
    background-color: #f59e0b;
    border-color: #f59e0b;
}

.btn-warning:hover {
    background-color: #d97706;
    border-color: #d97706;
}

.btn-info {
    color: #fff;
    background-color: #06b6d4;
    border-color: #06b6d4;
}

.btn-info:hover {
    background-color: #0891b2;
    border-color: #0891b2;
}

.btn-light {
    color: #000;
    background-color: #f3f4f6;
    border-color: #f3f4f6;
}

.btn-light:hover {
    background-color: #e5e7eb;
    border-color: #e5e7eb;
}

.btn-dark {
    color: #fff;
    background-color: #1f2937;
    border-color: #1f2937;
}

.btn-dark:hover {
    background-color: #111827;
    border-color: #111827;
}

.btn-outline-primary {
    color: #2563eb;
    background-color: transparent;
    border-color: #2563eb;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #2563eb;
}

.btn-outline-secondary {
    color: #6b7280;
    background-color: transparent;
    border: 2px solid #6b7280 !important;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6b7280;
}

.btn-outline-success {
    color: #10b981;
    background-color: transparent;
    border-color: #10b981;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #10b981;
}

.btn-outline-danger {
    color: #ef4444;
    background-color: transparent;
    border-color: #ef4444;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #ef4444;
}

.btn-link {
    color: #2563eb;
    background-color: transparent;
    border: none;
    text-decoration: underline;
}

.btn-link:hover {
    color: #1d4ed8;
    text-decoration: none;
}

/* Social Buttons */
.btn-facebook {
    background-color: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.btn-twitter {
    background-color: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.btn-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #fff;
    border: none;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border-color: #25d366;
}

/* Navigation */
.menu-toggle {
    background: none;
    border: none;
    padding: 10px;
    display: inline-block;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: .3s;
}

/* Desktop Menu */
.desktop-menu .primary-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.desktop-menu .primary-menu li {
    position: relative;
    animation: .5s forwards fadeInUp;
    opacity: 0;
}

.desktop-menu .primary-menu > li > a {
    font-size: 1rem;
    color: #374151;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: .3s;
    display: inline-block;
}

.desktop-menu .primary-menu > li > a:hover {
    color: #2563eb;
}

.desktop-menu .primary-menu > li > a:hover::after {
    width: 100%;
}

.desktop-menu .primary-menu > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width .3s;
    border-radius: 2px;
}

.desktop-menu .primary-menu > li.current-menu-item > a {
    color: #2563eb;
    font-weight: 600;
}

.desktop-menu .primary-menu > li.current-menu-item > a::after {
    width: 100%;
    background: #2563eb;
}

.desktop-menu .primary-menu li.menu-item-has-children {
    position: relative;
}

.desktop-menu .primary-menu li.menu-item-has-children > a {
    padding-right: 24px;
    position: relative;
}

.desktop-menu .primary-menu li.menu-item-has-children > a::before {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23374151' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: .7;
    transition: .3s;
}

.desktop-menu .primary-menu li.menu-item-has-children:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%232563eb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.desktop-menu .primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

.desktop-menu .primary-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-menu .primary-menu .sub-menu li {
    margin: 0;
    width: 100%;
}

.desktop-menu .primary-menu .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: #4b5563;
    font-weight: 400;
    font-size: .9rem;
    transition: .2s;
    border-left: 3px solid transparent;
    text-decoration: none;
}

.desktop-menu .primary-menu .sub-menu a:hover {
    background-color: #f9fafb;
    color: #2563eb;
    border-left-color: #2563eb;
    padding-left: 25px;
}

.desktop-menu .primary-menu li.mega-menu {
    position: static;
}

.desktop-menu .primary-menu li.mega-menu .sub-menu {
    width: 100%;
    left: 0;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.desktop-menu .primary-menu li.mega-menu .sub-menu .mega-menu-column h4 {
    font-size: .9rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

ul.sub-menu {
    list-style: none;
}

/* Mobile Menu */
.mobile-navigation {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
}

.mobile-navigation.active {
    display: block;
    max-height: 500px;
}

.mobile-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu li {
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu > li > a {
    font-size: 1rem;
    display: block;
    padding: 16px 0;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}

.mobile-menu > li > a:hover {
    color: #2563eb;
}

.mobile-menu li.menu-item-has-children {
    position: relative;
}

.mobile-menu li.menu-item-has-children > a::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    transition: transform .3s;
}

.mobile-menu li.menu-item-has-children.active > a::after {
    content: '−';
}

.mobile-menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
    padding-left: 20px;
}

.mobile-menu .sub-menu.active {
    max-height: 500px;
}

.mobile-menu .sub-menu a {
    padding: 12px 0;
    font-size: .95rem;
    color: #6b7280;
}

.mobile-menu .sub-menu li {
    border-bottom: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.desktop-menu .primary-menu li:first-child { animation-delay: .1s; }
.desktop-menu .primary-menu li:nth-child(2) { animation-delay: .2s; }
.desktop-menu .primary-menu li:nth-child(3) { animation-delay: .3s; }
.desktop-menu .primary-menu li:nth-child(4) { animation-delay: .4s; }
.desktop-menu .primary-menu li:nth-child(5) { animation-delay: .5s; }
.desktop-menu .primary-menu li:nth-child(6) { animation-delay: .6s; }

@media (max-width: 991px) {
    .desktop-menu .primary-menu {
        gap: 25px;
    }
}

/* Menu Icons */
.desktop-menu .primary-menu li.icon-home > a::before { content: "🏠"; }
.desktop-menu .primary-menu li.icon-product > a::before { content: "📦"; }
.desktop-menu .primary-menu li.icon-solutions > a::before { content: "💡"; }
.desktop-menu .primary-menu li.icon-pricing > a::before { content: "💰"; }

/* Menu Badges */
.menu-item-badge {
    position: relative;
}

.menu-item-badge > a::after {
    content: 'New';
    position: absolute;
    top: -8px;
    right: -25px;
    background: #ef4444;
    color: #fff;
    font-size: .7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

/* Gradient Hover Menu */
.desktop-menu .primary-menu li.gradient-hover > a {
    background: linear-gradient(90deg, transparent, transparent);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: .4s;
}

.desktop-menu .primary-menu li.gradient-hover > a:hover {
    background-position: 0 0;
    color: #fff;
    background-image: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 4px;
    padding: 8px 16px;
}

/* Header */
.site-branding img {
    max-height: 40px;
    width: auto;
}

.site-header {
    background: #fff;
    padding: 1.25rem 0;
    margin: 1rem auto 0;
    width: calc(100% - 2rem);
    max-width: 1280px;
    border-radius: 18px;
    border: 1px solid #e0e7ff;
    box-shadow: 0 10px 40px rgba(59,130,246,.08), 0 2px 10px rgba(0,0,0,.02), 0 0 0 1px #fff;
    position: sticky;
    top: 1rem;
    z-index: 1000;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.site-header:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59,130,246,.08), 0 2px 10px rgba(0,0,0,.03);
    transform: none;
}

.site-header.scrolled {
    margin-top: .5rem;
    padding: .75rem 0;
    border-color: rgba(59,130,246,.6);
    box-shadow: 0 6px 20px rgba(59,130,246,.06), 0 2px 8px rgba(0,0,0,.04);
}

.site-header.scrolled .site-branding img {
    max-height: 34px;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem 5rem;
    background: linear-gradient(180deg, #fff 0, #f8fbff 100%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 700;
    color: #0f172a;
}

.hero-content .highlight {
    color: #2563eb;
}

.hero-sub {
    margin-top: 1.5rem;
    color: #475569;
    max-width: 520px;
    font-size: 1.125rem;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

/* Mockup Card */
.mockup-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 25px 60px rgba(37,99,235,.15);
    overflow: hidden;
}

.mockup-header {
    height: 36px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #facc15; }
.dot.green { background: #22c55e; }

.mockup-body {
    display: grid;
    grid-template-columns: 80px 1fr;
    min-height: 260px;
}

.mockup-sidebar {
    background: #f8fafc;
}

.mockup-main {
    padding: 1.25rem;
}

.mockup-line {
    height: 10px;
    background: #e5e7eb;
    border-radius: 6px;
    margin-bottom: 10px;
}

.w-40 { width: 40%; }

.mockup-chart {
    height: 100px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    margin: 1rem 0;
}

.mockup-cards {
    display: flex;
    gap: 10px;
}

.mockup-mini-card {
    flex: 1;
    height: 60px;
    background: #f1f5f9;
    border-radius: 10px;
}

/* Signal Bar */
.signal-bar {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.signal-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: #334155;
}

.signal-badge {
    background: #10b981;
    color: #fff;
    font-size: .7rem;
    padding: .2rem .45rem;
    border-radius: 999px;
    font-weight: 600;
}

.signal-bar a {
    color: #2563eb;
    font-weight: 500;
    margin-left: .25rem;
    text-decoration: none;
}

/* GWN Diagnosis */
.gwn-diagnosis .section-intro {
    width: 100%;
    margin-bottom: 1.5rem;
}

.gwn-diagnosis .section-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gwn-diagnosis .section-intro p {
    font-size: 1.05rem;
    color: #475569;
}

.diagnosis-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.diagnosis-intro {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.diagnosis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.diagnosis-item {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.diagnosis-item .step {
    display: block;
    font-weight: 700;
    font-size: .85rem;
    color: #2563eb;
    margin-bottom: .75rem;
}

.diagnosis-item h3 {
    margin-bottom: .75rem;
    font-size: 1.15rem;
}

.diagnosis-item p {
    color: #475569;
    font-size: .95rem;
    line-height: 1.5;
}

.diagnosis-item.highlight {
    border-color: #2563eb;
    background: #f0f6ff;
}

/* How It Works & Decision */
.how-it-works-decision,
.who-its-for {
    background: #f8fbff;
}

.section-intro.left {
    max-width: 640px;
    margin-bottom: 3rem;
}

.section-intro.left h2 {
    font-size: 2rem;
    margin-bottom: .75rem;
}

.section-intro.left p {
    font-size: 1.05rem;
    color: #475569;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.decision-card {
    background: #fff;
    padding: 2.25rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.decision-card .icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.decision-card h3 {
    font-size: 1.2rem;
    margin-bottom: .75rem;
}

.decision-card p {
    color: #475569;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.decision-card ul {
    padding-left: 1.1rem;
    margin-bottom: 1.25rem;
}

.decision-card ul li {
    font-size: .9rem;
    color: #334155;
    margin-bottom: .4rem;
}

.decision-card blockquote {
    font-size: .9rem;
    font-style: italic;
    color: #2563eb;
    border-left: 3px solid #2563eb;
    padding-left: .75rem;
}

.decision-card.highlight {
    border-color: #2563eb;
    background: #f0f6ff;
}

/* Diagnosis Layout */
.diagnosis-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.diagnosis-points {
    list-style: none;
    padding: 0;
}

.diagnosis-points li {
    margin-bottom: 1.25rem;
    font-size: .95rem;
    color: #334155;
}

.diagnosis-points strong {
    color: #0f172a;
}

/* Wireframe */
.gwn-diagnosis-visual,
.wireframe-card {
    background: #fff;
}

.wireframe-card {
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 25px 60px rgba(37,99,235,.12);
    overflow: hidden;
    max-width: 420px;
}

.wireframe-header {
    height: 36px;
    background: #f1f5f9;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0 12px;
}

.wireframe-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5f5;
}

.wireframe-body {
    padding: 1.25rem;
}

.wireframe-line {
    height: 10px;
    background: #e5e7eb;
    border-radius: 6px;
    margin-bottom: 10px;
}

.w-80 { width: 80%; }
.w-70 { width: 70%; }
.w-60 { width: 60%; }

.wireframe-block {
    height: 90px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    margin: 1rem 0;
}

/* Who It's For Grid */
.who-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.who-box {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 2.25rem;
    transition: box-shadow .2s;
}

.who-box h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.who-box p {
    font-size: .95rem;
    color: #475569;
    line-height: 1.5;
}

.who-box.highlight {
    background: #f0f6ff;
    border-color: #2563eb;
}

.who-box:hover {
    box-shadow: 0 20px 50px rgba(37,99,235,.08);
}

@media (min-width: 1024px) {
    .who-box:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -1.25rem;
        width: 2.5rem;
        height: 1px;
        background: linear-gradient(to right, #c7d2fe, #2563eb);
        transform: translateY(-50%);
    }
}

/* Pricing */
.pricing,
.trust-gwn {
    background: #fff;
    padding: 3rem 0;
}

.pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-header h2 {
    font-size: 2rem;
    margin-bottom: .75rem;
}

.pricing-header p {
    margin-top: .5rem;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

.pricing-table {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.col {
    border-left: 1px solid #e5e7eb;
}

.col:first-child {
    border-left: none;
}

.col.highlight {
    background: #f0f6ff;
    box-shadow: inset 0 0 0 2px #2563eb;
    position: relative;
}

.cell {
    display: flex;
    align-items: center;
    height: 58px;
    padding: 0 1.1rem;
    justify-content: center;
    min-height: 58px;
    font-size: .95rem;
    border-bottom: 1px solid #e5e7eb;
}

.cell.head {
    height: 140px;
    flex-direction: column;
    justify-content: center;
    gap: .35rem;
    background: #fff;
    text-align: center;
}

.cell.head h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
}

.cell.head strong {
    color: #2563eb;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.1;
    display: block;
}

.cell.head small {
    font-size: .8rem;
    color: #64748b;
    display: block;
}

.benefits .cell {
    justify-content: flex-start;
    gap: .5rem;
    font-weight: 500;
    color: #0f172a;
    background: #f8fafc;
    position: sticky;
    left: 0;
    z-index: 2;
}

.cell.footer {
    display: flex;
    align-items: center;
    height: 96px;
    border-bottom: none;
    justify-content: center;
    background: #fff;
}

.info {
    width: 16px;
    height: 16px;
    background: #e0e7ff;
    border-radius: 50%;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    color: #2563eb;
    font-weight: 700;
    cursor: pointer;
}

.info::after {
    content: attr(data-tip);
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: #0f172a;
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s;
    z-index: 100;
    min-width: 180px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.info:hover::after {
    opacity: 1;
}

/* Why GWN & Trust */
.gwn-trust,
.why-gwn {
    background: #f8fbff;
    padding: 3rem 0;
}

.why-gwn-container,
.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-gwn-header,
.gwn-trust-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.why-gwn-header h2,
.gwn-trust-header h2 {
    font-size: 2rem;
    margin-bottom: .75rem;
}

.why-gwn-header p,
.gwn-trust-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
}

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

.why-gwn-card {
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    padding: 32px;
    transition: .25s;
}

.why-gwn-card.highlight {
    border-color: #2563eb;
    background: #f1f6ff;
}

.why-gwn-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.why-gwn-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #0f172a;
}

.why-gwn-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.why-gwn-card blockquote {
    margin-top: 24px;
    font-size: .9rem;
    font-style: italic;
    color: #2563eb;
    border-left: 3px solid #2563eb;
    padding-left: .75rem;
}

.trust-header {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.trust-header h2 {
    font-size: 2rem;
    margin-bottom: .75rem;
}

.trust-header p {
    font-size: 17px;
    line-height: 1.6;
    color: #475569;
}

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

.trust-item {
    padding: 28px 28px 32px;
    background: #fff;
    border: 1px solid #e6edf7;
    border-radius: 14px;
    transition: .2s;
}

.trust-item:hover {
    border-color: #d6e2f5;
    background: #fff;
}

.trust-icon {
    font-size: 26px;
    display: inline-block;
    margin-bottom: 12px;
}

.trust-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}

.trust-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.trust-note {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid #e5eaf1;
}

.trust-note p {
    font-size: 14px;
    color: #64748b;
}

/* GWN Trust Specific */
.gwn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gwn-trust-wrapper {
    background: #fff;
    border: 1px solid #e6edf7;
    border-radius: 20px;
    padding: 40px;
}

.gwn-trust-item {
    display: flex;
    align-items: flex-start;
}

.gwn-trust-icon {
    font-size: 28px;
    line-height: 1;
    margin-top: 4px;
}

.gwn-trust-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0f172a;
}

.gwn-trust-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.gwn-trust-connector {
    height: 24px;
    border-left: 2px dashed #dbe4f3;
    margin: 16px 0 16px 14px;
}

.gwn-trust-box {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 56px;
    border-radius: 20px;
    border: 1px solid #e6edf7;
    background: #fff;
}

.gwn-trust-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.gwn-trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gwn-trust-item .icon {
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
}

.gwn-trust-item h4 {
    font-size: 17px;
    margin: 0 0 6px;
    color: #0f172a;
}

.gwn-trust-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Risk Inline */
.risk-inline {
    width: 100%;
    background: #fff;
    border-top: 1px solid #e6edf7;
    border-bottom: 1px solid #e6edf7;
}

.risk-inline-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    color: #0f172a;
    flex-wrap: wrap;
}

.risk-inline-inner span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    height: 40px;
}

.lang-switch a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.lang-switch img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    transition: transform .15s, box-shadow .15s;
}

.lang-switch img:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,.3);
}

.header-buttons {
    gap: 14px;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 64px 20px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 64px;
}

.footer-brand .footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand .footer-logo span {
    color: #3b82f6;
}

.footer-brand p {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(148,163,184,.15);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .diagnosis-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .decision-grid,
    .diagnosis-layout,
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .diagnosis-visual {
        order: -1;
    }
    
    .who-box::after {
        display: none;
    }
    
    .why-gwn-grid {
        grid-template-columns: 1fr;
    }
    
    .why-gwn-header h2 {
        font-size: 32px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trust-header h2 {
        font-size: 30px;
    }
    
    .pricing {
        padding: 4rem 1rem;
    }
    
    .pricing-inner {
        padding: 0;
    }
    
    .pricing-header {
        padding: 0 1rem;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
    
    .pricing-table-container {
        position: relative;
        margin: 0 -1rem;
        padding: 0 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        display: grid !important;
        grid-template-columns: 250px repeat(4, 200px) !important;
        min-width: 1050px !important;
        width: auto !important;
        overflow: visible !important;
        border-radius: 12px;
        margin: 0;
    }
    
    .pricing-table-container::after {
        content: '← Scroll →';
        position: absolute;
        right: 20px;
        bottom: 10px;
        background: rgba(37,99,235,.9);
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: .75rem;
        font-weight: 600;
        z-index: 10;
        pointer-events: none;
        animation: 3s infinite fadeInOut;
        box-shadow: 0 2px 8px rgba(0,0,0,.2);
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: .7; }
        50% { opacity: 1; }
    }
    
    .benefits {
        position: sticky;
        left: 0;
        z-index: 3;
        background: #f8fafc;
        box-shadow: 4px 0 8px rgba(0,0,0,.05);
    }
    
    .cell {
        height: 52px;
        padding: 0 .9rem;
        font-size: .9rem;
        min-width: 200px;
    }
    
    .benefits .cell {
        min-width: 250px;
    }
    
    .cell.head {
        height: 120px;
    }
    
    .cell.head strong {
        font-size: 1.8rem;
    }
    
    .cell.footer {
        height: 85px;
    }
    
    .btn {
        height: 40px;
        padding: 0 1.2rem;
        font-size: .85rem;
        max-width: 160px;
    }
    
    .pricing-table-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .pricing-table-container::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 3px;
    }
    
    .pricing-table-container::-webkit-scrollbar-thumb {
        background: #2563eb;
        border-radius: 3px;
    }
    
    .pricing-table-container::-webkit-scrollbar-thumb:hover {
        background: #1d4ed8;
    }
}

@media (max-width: 768px) {
    .btn-block-mobile {
        display: block;
        width: 100%;
        margin-bottom: .5rem;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group .btn {
        width: 100%;
        border-radius: .375rem;
        margin: .25rem 0;
    }
    
    .mobile-menu > li > a {
        padding: 14px 0;
    }
    
    .mobile-menu .sub-menu a {
        padding: 10px 0;
    }
    
    .hero {
        padding: 4rem 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-sub {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: .75rem;
    }
    
    .mockup-card {
        max-width: 100%;
    }
    
    .mockup-body {
        grid-template-columns: 60px 1fr;
    }
    
    .mockup-chart {
        height: 80px;
    }
    
    .mockup-mini-card {
        height: 48px;
    }
    
    .pricing {
        padding: 3rem 1rem;
    }
    
    .pricing-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-table {
        grid-template-columns: 220px repeat(4, 180px) !important;
        min-width: 940px !important;
    }
    
    .benefits .cell {
        min-width: 220px;
    }
    
    .cell {
        min-width: 180px;
        height: 48px;
        padding: 0 .8rem;
        font-size: .85rem;
    }
    
    .cell.head {
        height: 110px;
    }
    
    .cell.head strong {
        font-size: 1.6rem;
    }
    
    .cell.footer {
        height: 80px;
    }
    
    .btn {
        height: 40px;
        padding: 0 1rem;
        font-size: .8rem;
        max-width: 150px;
    }
    
    .gwn-trust {
        padding: 72px 0;
    }
    
    .gwn-trust-wrapper {
        padding: 28px;
    }
    
    .gwn-trust-item {
        gap: 16px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .diagnosis-grid {
        grid-template-columns: 1fr;
    }
    
    .why-gwn {
        padding: 72px 20px;
    }
    
    .desktop-only {
        display: none;
    }
    
    .risk-inline-inner {
        gap: 16px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-sub {
        font-size: .95rem;
    }
    
    .mockup-header {
        height: 32px;
    }
    
    .mockup-header .dot {
        width: 8px;
        height: 8px;
    }
    
    .mockup-sidebar {
        display: none;
    }
    
    .mockup-body {
        grid-template-columns: 1fr;
    }
    
    .btn,
    .cell {
        font-size: .8rem;
    }
    
    .pricing {
        padding: 2.5rem 1rem;
    }
    
    .pricing-header h2 {
        font-size: 1.6rem;
    }
    
    .pricing-table {
        grid-template-columns: 200px repeat(4, 160px) !important;
        min-width: 840px !important;
    }
    
    .benefits .cell {
        min-width: 200px;
    }
    
    .cell {
        min-width: 160px;
        height: 45px;
        padding: 0 .7rem;
    }
    
    .cell.head {
        height: 100px;
    }
    
    .cell.head strong {
        font-size: 1.4rem;
    }
    
    .cell.footer {
        height: 75px;
    }
    
    .btn {
        height: 38px;
        padding: 0 .8rem;
        max-width: 140px;
    }
    
    .pricing-table-container::after {
        font-size: .7rem;
        padding: 4px 10px;
        right: 10px;
        bottom: 8px;
    }
}

/* Fallback for browsers without grid support */
@supports not (display: grid) {
    .pricing-table {
        display: table;
        width: 100%;
    }
    
    @media (max-width: 1024px) {
        .pricing-table {
            display: block;
            overflow-x: auto;
        }
    }
}

/* Debug classes */
.debug-table {
    border: 2px solid red !important;
}

.debug-container {
    border: 2px solid #00f !important;
}