@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700;800&family=DM+Sans:wght@400;700&display=swap');

:root {
    --el-primary: #facc15;
    --el-secondary: #0a0a0a;
    --el-accent: #facc15;
    --el-text: #171717;
    --el-background: #ffffff;
    --el-surface: #f7f7f4;
    --el-muted: #737373;
    --el-border: #e5e5e5;
    --el-success: #22c55e;
    --el-error: #ef4444;

    --el-font-heading: 'Space Grotesk', sans-serif;
    --el-font-body: 'DM Sans', sans-serif;

    --el-radius-sm: 2px;
    --el-radius-md: 2px;
    --el-radius-lg: 2px;

    --el-spacing-xxs: 4px;
    --el-spacing-xs: 8px;
    --el-spacing-sm: 16px;
    --el-spacing-md: 24px;
    --el-spacing-lg: 32px;
    --el-spacing-xl: 48px;
    --el-spacing-xxl: 64px;
    --el-spacing-xxxl: 96px;
    --el-spacing-xxxxl: 128px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--el-font-body);
    color: var(--el-text);
    background-color: var(--el-background);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--el-primary);
    color: var(--el-text);
}

a {
    color: var(--el-primary);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--el-secondary);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--el-radius-sm);
}

/* Typography Scale */
h1,
.el-h1 {
    font-family: var(--el-font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--el-text);
    text-transform: uppercase;
}

h2,
.el-h2 {
    font-family: var(--el-font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--el-text);
}

h3,
.el-h3 {
    font-family: var(--el-font-heading);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--el-text);
}

h4,
.el-h4 {
    font-family: var(--el-font-body);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--el-text);
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: var(--el-spacing-sm);
}

small,
.el-small {
    font-size: 0.875rem;
    color: var(--el-muted);
}

.el-subheading {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--el-muted);
    line-height: 1.5;
}

.el-text-center {
    text-align: center;
}

/* Layout Utilities */
.el-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--el-spacing-md);
    padding-right: var(--el-spacing-md);
}

.el-section {
    padding-top: var(--el-spacing-xxxl);
    padding-bottom: var(--el-spacing-xxxl);
    position: relative;
}

.el-section-alt {
    background-color: var(--el-surface);
    padding-top: var(--el-spacing-xxxl);
    padding-bottom: var(--el-spacing-xxxl);
    position: relative;
}

.el-grid {
    display: grid;
    gap: var(--el-spacing-lg);
}

.el-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.el-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.el-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.el-flex {
    display: flex;
    align-items: center;
    gap: var(--el-spacing-md);
}

.el-flex-col {
    flex-direction: column;
}

.el-flex-justify-center {
    justify-content: center;
}

/* Header & Navigation */
.el-header {
    background-color: var(--el-background);
    padding: var(--el-spacing-sm) var(--el-spacing-md);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.el-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.el-logo {
    font-family: var(--el-font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--el-text);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.el-logo:hover {
    text-decoration: none;
    color: var(--el-primary);
}

.el-nav-list {
    list-style: none;
    display: flex;
    gap: var(--el-spacing-lg);
}

.el-nav-item {
    position: relative;
}

.el-nav-link {
    font-weight: 700;
    color: var(--el-text);
    padding: var(--el-spacing-xs) var(--el-spacing-sm);
    border-radius: var(--el-radius-sm);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-nav-link:hover {
    color: var(--el-primary);
    background-color: rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.el-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    color: var(--el-text);
}

.el-cart-badge {
    background-color: var(--el-primary);
    color: var(--el-text);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 0.2em 0.5em;
    position: absolute;
    top: -5px;
    right: -10px;
    line-height: 1;
    min-width: 20px;
    text-align: center;
}

/* Hero Section */
.el-hero {
    background-color: var(--el-background);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.el-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--el-spacing-xxxl);
    align-items: center;
    padding: var(--el-spacing-xxxl) 0;
}

.el-hero-text {
    padding-right: var(--el-spacing-lg);
}

.el-hero-text h1 {
    margin-bottom: var(--el-spacing-md);
    text-transform: none;
}

.el-hero-text .el-subheading {
    margin-bottom: var(--el-spacing-xl);
}

.el-hero-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.el-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--el-radius-md);
}

/* Buttons */
.el-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--el-spacing-sm) var(--el-spacing-lg);
    font-family: var(--el-font-body);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid transparent;
    border-radius: var(--el-radius-md);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.el-button-primary {
    background-color: var(--el-primary);
    color: var(--el-secondary);
    border-color: var(--el-secondary);
    box-shadow: 4px 4px 0px var(--el-secondary);
}

.el-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px var(--el-secondary);
    background-color: #e5b912;
    color: var(--el-text);
}

.el-button-secondary {
    background-color: var(--el-secondary);
    color: var(--el-primary);
    border-color: var(--el-primary);
    box-shadow: 4px 4px 0px var(--el-primary);
}

.el-button-secondary:hover {
    transform: translateY(-2px);
    background-color: #262626;
    color: var(--el-primary);
    box-shadow: 6px 6px 0px var(--el-primary);color:#779fd4}

.el-button-outline {
    background-color: transparent;
    color: var(--el-text);
    border-color: var(--el-text);
    box-shadow: 4px 4px 0px var(--el-text);
}

.el-button-outline:hover {
    transform: translateY(-2px);
    background-color: var(--el-text);
    color: var(--el-background);
    box-shadow: 6px 6px 0px var(--el-text);
}

.el-link {
    color: var(--el-primary);
    font-weight: 700;
    text-decoration: underline;
}

.el-link:hover {
    color: var(--el-secondary);
}

/* Cards */
.el-card {
    background-color: var(--el-surface);
    border: 1px solid var(--el-secondary);
    border-radius: var(--el-radius-md);
    padding: var(--el-spacing-lg);
    box-shadow: 4px 4px 0px var(--el-secondary);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.el-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px var(--el-secondary);
}

.el-card-feature,
.el-card-service,
.el-card-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.el-card-feature h3, .el-card-service h3, .el-card-process h3 {
    margin-top: var(--el-spacing-md);
    margin-bottom: var(--el-spacing-xs);
}

.el-card-product {
    display: flex;
    flex-direction: column;
    padding: var(--el-spacing-md);
}

.el-card-product img {
    margin-bottom: var(--el-spacing-md);
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: var(--el-radius-sm);
}

.el-card-product h3 {
    font-size: 1.3rem;
    margin-bottom: var(--el-spacing-xs);
    text-align: left;
}

.el-card-product .el-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--el-primary);
    margin-bottom: var(--el-spacing-md);
    text-align: left;
}

.el-card-product .el-product-actions {
    display: flex;
    gap: var(--el-spacing-sm);
    margin-top: auto;
}

/* Icons */
.el-icon {
    width: 1.25em;
    height: 1.25em;
    vertical-align: -0.125em;
    fill: none;
    stroke: currentColor;
}

.el-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--el-radius-md);
    background-color: rgba(var(--el-primary-rgb), 0.1);
    padding: var(--el-spacing-xs);
}

.el-icon-large {
    width: 48px;
    height: 48px;
    color: var(--el-primary);
    stroke-width: 2;
}

/* Editorial Elements */
.el-pullquote {
    font-family: var(--el-font-body);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-style: italic;
    line-height: 1.4;
    color: var(--el-text);
    text-align: center;
    max-width: 800px;
    margin: var(--el-spacing-xxxl) auto;
    position: relative;
}

.el-pullquote::before {
    content: '“';
    font-family: var(--el-font-heading);
    font-size: 8rem;
    line-height: 0;
    position: absolute;
    top: var(--el-spacing-xl);
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--el-primary);
    opacity: 0.1;
    z-index: -1;
}

.el-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--el-spacing-lg);
    text-align: center;
}

.el-stat-item {
    background-color: var(--el-surface);
    padding: var(--el-spacing-lg);
    border-radius: var(--el-radius-md);
    border: 1px solid var(--el-secondary);
    box-shadow: 4px 4px 0px var(--el-secondary);
}

.el-stat-number {
    font-family: var(--el-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--el-primary);
    margin-bottom: var(--el-spacing-xs);
}

.el-stat-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--el-text);
}

/* Testimonials */
.el-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--el-spacing-lg);
}

.el-testimonial-card {
    padding: var(--el-spacing-lg);
    background-color: var(--el-surface);
    border-radius: var(--el-radius-md);
    border: 1px solid var(--el-secondary);
    box-shadow: 4px 4px 0px var(--el-secondary);
    display: flex;
    flex-direction: column;
    gap: var(--el-spacing-sm);
}

.el-testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: var(--el-spacing-sm);
}

.el-testimonial-cite {
    font-weight: 700;
    color: var(--el-text);
    display: block;
}

.el-testimonial-cite span {
    font-weight: 400;
    color: var(--el-muted);
    font-size: 0.9rem;
}

.el-testimonial-stars {
    display: flex;
    gap: var(--el-spacing-xxs);
    color: var(--el-primary);
}

/* FAQ */
.el-faq-item {
    border-bottom: 1px solid var(--el-border);
    transition: all 0.3s ease;
}

.el-faq-item:first-child {
    border-top: 1px solid var(--el-border);
}

.el-faq-q {
    padding: var(--el-spacing-md) var(--el-spacing-sm);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--el-text);
}

.el-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.el-faq-item.active .el-faq-q::after {
    content: '-';
    transform: rotate(0deg);
}

.el-faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--el-spacing-sm);
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--el-muted);
}

.el-faq-item.active .el-faq-a {
    max-height: 500px; /* Arbitrary large value */
    padding: var(--el-spacing-xs) var(--el-spacing-sm) var(--el-spacing-md);
}

/* CTA */
.el-cta {
    background-color: var(--el-secondary);
    color: var(--el-background);
    padding-top: var(--el-spacing-xxxl);
    padding-bottom: var(--el-spacing-xxxl);
    text-align: center;
}

.el-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.el-cta h2 {
    color: var(--el-background);
    margin-bottom: var(--el-spacing-sm);
}

.el-cta p {
    color: var(--el-surface);
    margin-bottom: var(--el-spacing-xl);
    font-size: 1.25rem;
}

/* Form Styling */
.el-contact-form {
    display: grid;
    gap: var(--el-spacing-md);
    margin-top: var(--el-spacing-lg);
}

.el-form-group {
    margin-bottom: var(--el-spacing-sm);
}

.el-form-label {
    display: block;
    font-weight: 700;
    margin-bottom: var(--el-spacing-xs);
    color: var(--el-text);
}

.el-form-input,
.el-form-textarea {
    width: 100%;
    padding: var(--el-spacing-sm);
    border: 1px solid var(--el-border);
    border-radius: var(--el-radius-sm);
    font-family: var(--el-font-body);
    font-size: 1rem;
    color: var(--el-text);
    background-color: var(--el-background);
    transition: border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.el-form-input:focus,
.el-form-textarea:focus {
    border-color: var(--el-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--el-primary-rgb), 0.2);
}

.el-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.el-form-error {
    color: var(--el-error);
    font-size: 0.875rem;
    margin-top: var(--el-spacing-xxs);
    display: block;
}

.el-form-success {
    background-color: var(--el-success);
    color: #595959;
    padding: var(--el-spacing-md);
    border-radius: var(--el-radius-md);
    text-align: center;
    font-weight: 700;
    margin-top: var(--el-spacing-md);
    display: none;
}

/* Footer */
.el-footer {
    background-color: var(--el-secondary);
    color: var(--el-surface);
    padding-top: var(--el-spacing-xxxl);
    font-size: 0.95rem;
}

.el-footer h4 {
    color: var(--el-primary);
    margin-bottom: var(--el-spacing-md);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.el-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--el-spacing-xl);
    padding-bottom: var(--el-spacing-xxl);
}

.el-footer-col {
    display: flex;
    flex-direction: column;
}

.el-footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--el-muted);
}

.el-footer-list {
    list-style: none;
    padding: 0;
}

.el-footer-list li {
    margin-bottom: var(--el-spacing-xs);
}

.el-footer-link {
    color: var(--el-surface);
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-footer-link:hover {
    color: var(--el-primary);
    text-decoration: underline;
}

.el-footer-bottom {
    border-top: 1px solid rgba(var(--el-surface-rgb), 0.1);
    padding: var(--el-spacing-md) 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--el-muted);
}

.el-social-links {
    display: flex;
    gap: var(--el-spacing-sm);
    margin-top: var(--el-spacing-md);
}

.el-social-links a {
    color: var(--el-surface);
    font-size: 1.5rem;
}

.el-social-links a:hover {
    color: var(--el-primary);
}

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

.el-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.el-animate.is-visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* eCommerce Trust Strip */
.el-trust-strip {
    background-color: var(--el-surface);
    border-top: 1px solid var(--el-border);
    border-bottom: 1px solid var(--el-border);
    padding: var(--el-spacing-md) 0;
}

.el-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--el-spacing-md);
    text-align: center;
}

.el-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--el-spacing-xs);
    padding: var(--el-spacing-sm);
}

.el-trust-item .el-icon {
    width: 32px;
    height: 32px;
    color: var(--el-primary);
    stroke-width: 2;
}

.el-trust-item strong {
    font-weight: 700;
    font-size: 1rem;
    color: var(--el-text);
}

.el-trust-item span {
    font-size: 0.8rem;
    color: var(--el-muted);
}

/* Product specific styles */
.el-product-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--el-spacing-xxxl);
    align-items: flex-start;
    padding: var(--el-spacing-xxxl) 0;
}

.el-product-image-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--el-spacing-md);
}

.el-product-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.el-product-thumb-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--el-spacing-sm);
}

.el-product-thumb-gallery img {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.el-product-thumb-gallery img.active, .el-product-thumb-gallery img:hover {
    opacity: 1;
    border: 1px solid var(--el-primary);
}

.el-product-info h1 {
    margin-bottom: var(--el-spacing-md);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.el-product-price-detail {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--el-primary);
    margin-bottom: var(--el-spacing-lg);
}

.el-product-description {
    margin-bottom: var(--el-spacing-lg);
    font-size: 1.0625rem;
    color: var(--el-text);
}

.el-product-options label {
    display: block;
    font-weight: 700;
    margin-bottom: var(--el-spacing-xs);
}

.el-product-options select,
.el-product-quantity input[type="number"] {
    width: 100%;
    max-width: 150px;
    padding: var(--el-spacing-sm);
    border: 1px solid var(--el-border);
    border-radius: var(--el-radius-sm);
    font-family: var(--el-font-body);
    font-size: 1rem;
    color: var(--el-text);
    background-color: var(--el-background);
    margin-bottom: var(--el-spacing-md);
}

.el-product-actions-detail {
    display: flex;
    gap: var(--el-spacing-md);
    margin-top: var(--el-spacing-lg);
    flex-wrap: wrap;
}

.el-related-products h2 {
    margin-bottom: var(--el-spacing-xl);
}

.el-customer-reviews h3 {
    margin-bottom: var(--el-spacing-lg);
}

.el-review-item {
    background-color: var(--el-surface);
    padding: var(--el-spacing-md);
    border-radius: var(--el-radius-md);
    margin-bottom: var(--el-spacing-md);
    border: 1px solid var(--el-secondary);
    box-shadow: 4px 4px 0px var(--el-secondary);
}

.el-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--el-spacing-xs);
}

.el-review-author {
    font-weight: 700;
    color: var(--el-text);
}

.el-review-stars {
    color: var(--el-primary);
    display: flex;
    gap: 2px;
}

.el-review-date {
    font-size: 0.875rem;
    color: var(--el-muted);
}

.el-review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--el-muted);
}

/* Cart Page Styles */
.el-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--el-spacing-xl);
}

.el-cart-table th,
.el-cart-table td {
    text-align: left;
    padding: var(--el-spacing-sm);
    border-bottom: 1px solid var(--el-border);
}

.el-cart-table th {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--el-muted);
    background-color: var(--el-surface);
}

.el-cart-item {
    display: flex;
    align-items: center;
    gap: var(--el-spacing-md);
}

.el-cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--el-radius-sm);
}

.el-cart-item-details strong {
    display: block;
    margin-bottom: var(--el-spacing-xxs);
}

.el-cart-item-details span {
    color: var(--el-muted);
    font-size: 0.9rem;
}

.el-cart-quantity-control {
    display: flex;
    align-items: center;
    gap: var(--el-spacing-xxs);
}

.el-cart-quantity-control button {
    background-color: var(--el-surface);
    border: 1px solid var(--el-border);
    color: var(--el-text);
    width: 30px;
    height: 30px;
    border-radius: var(--el-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.el-cart-quantity-control button:hover {
    background-color: var(--el-border);
}

.el-cart-quantity-control input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--el-border);
    border-radius: var(--el-radius-sm);
    padding: var(--el-spacing-xxs);
}

.el-cart-remove-btn {
    background: none;
    border: none;
    color: var(--el-error);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

.el-cart-summary {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--el-spacing-lg);
}

.el-cart-totals {
    width: 100%;
    max-width: 350px;
    background-color: var(--el-surface);
    border: 1px solid var(--el-secondary);
    box-shadow: 4px 4px 0px var(--el-secondary);
    padding: var(--el-spacing-lg);
    border-radius: var(--el-radius-md);
}

.el-cart-totals div {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--el-spacing-sm);
}

.el-cart-totals .el-total-row {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--el-primary);
    border-top: 1px solid var(--el-border);
    padding-top: var(--el-spacing-sm);
}

.el-cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: var(--el-spacing-xl);
    flex-wrap: wrap;
    gap: var(--el-spacing-md);
}

.el-empty-cart {
    text-align: center;
    padding: var(--el-spacing-xxl);
    background-color: var(--el-surface);
    border-radius: var(--el-radius-md);
    margin-top: var(--el-spacing-xxl);
}

/* Checkout Page Styles */
.el-checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--el-spacing-xxxl);
    align-items: flex-start;
    padding: var(--el-spacing-xxxl) 0;
}

.el-checkout-section h3 {
    margin-bottom: var(--el-spacing-md);
    border-bottom: 1px solid var(--el-border);
    padding-bottom: var(--el-spacing-xs);
}

.el-shipping-form,
.el-payment-form {
    display: grid;
    gap: var(--el-spacing-md);
    margin-bottom: var(--el-spacing-xl);
}

.el-payment-form .el-form-group-inline {
    display: flex;
    gap: var(--el-spacing-md);
}

.el-payment-form .el-form-group-inline > div {
    flex: 1;
}

.el-order-summary {
    background-color: var(--el-surface);
    border: 1px solid var(--el-secondary);
    box-shadow: 4px 4px 0px var(--el-secondary);
    padding: var(--el-spacing-lg);
    border-radius: var(--el-radius-md);
    position: sticky;
    top: calc(var(--el-spacing-md) + 80px); /* Adjust for header height */
}

.el-order-summary ul {
    list-style: none;
    margin-bottom: var(--el-spacing-md);
}

.el-order-summary ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--el-spacing-xs);
    font-size: 0.95rem;
}

.el-order-summary .el-total-row {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--el-primary);
    border-top: 1px solid var(--el-border);
    padding-top: var(--el-spacing-sm);
    display: flex;
    justify-content: space-between;
    margin-top: var(--el-spacing-md);
}

.el-security-badges {
    display: flex;
    gap: var(--el-spacing-md);
    justify-content: center;
    margin-top: var(--el-spacing-xl);
    font-size: 0.9rem;
    color: var(--el-muted);
}

.el-security-badge-item {
    display: flex;
    align-items: center;
    gap: var(--el-spacing-xs);
}

.el-security-badge-item .el-icon {
    width: 20px;
    height: 20px;
    color: var(--el-success);
}

.el-checkout-confirmation {
    text-align: center;
    padding: var(--el-spacing-xxl);
    background-color: var(--el-surface);
    border-radius: var(--el-radius-md);
    margin-top: var(--el-spacing-xxxl);
    display: none;
}

.el-checkout-confirmation h2 {
    color: var(--el-success);
    margin-bottom: var(--el-spacing-md);
}

/* Off-grid sticker for Bold Startup */
.el-off-grid-sticker {
    position: absolute;
    top: -20px; /* Adjust as needed */
    left: -20px; /* Adjust as needed */
    width: 120px;
    height: 120px;
    z-index: 10;
    color: var(--el-primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .el-hero-content {
        grid-template-columns: 1fr;
        gap: var(--el-spacing-xl);
    }

    .el-hero-text {
        padding-right: 0;
        text-align: center;
    }

    .el-hero-text .el-button-group {
        justify-content: center;
    }

    .el-hero-image {
        order: -1;
    }

    .el-product-detail-hero {
        grid-template-columns: 1fr;
    }
    .el-checkout-grid {
        grid-template-columns: 1fr;
    }
    .el-order-summary {
        position: static;
        margin-top: var(--el-spacing-xl);
    }
}

@media (max-width: 768px) {
    .el-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--el-background);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: var(--el-spacing-md) 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .el-nav-list.active {
        max-height: 300px; /* Adjust as needed */
    }

    .el-nav-item {
        text-align: center;
        margin-bottom: var(--el-spacing-sm);
    }

    .el-mobile-toggle {
        display: block;
    }

    .el-section,
    .el-section-alt {
        padding-top: var(--el-spacing-xxl);
        padding-bottom: var(--el-spacing-xxl);
    }

    .el-carousel-item {
        flex: 0 0 100%;
    }

    p {
        font-size: 1rem;
    }

    .el-hero-text h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .el-hero-text .el-subheading {
        font-size: 1.125rem;
    }

    .el-card-product .el-product-actions {
        flex-direction: column;
        gap: var(--el-spacing-sm);
    }

}

@media (max-width: 480px) {
    .el-header {
        padding: var(--el-spacing-xs) var(--el-spacing-sm);
    }

    .el-logo {
        font-size: 1.5rem;
    }

    .el-hero-text h1 {
        font-size: clamp(1.8rem, 9vw, 3rem);
    }

    .el-hero-text .el-subheading {
        font-size: 1rem;
    }

    .el-button {
        width: 100%;
    }

    .el-footer-grid {
        grid-template-columns: 1fr;
    }

    .el-trust-grid {
        grid-template-columns: 1fr;
    }

     .el-product-actions-detail {
        flex-direction: column;
    }

    .el-payment-form .el-form-group-inline {
        flex-direction: column;
    }
}

/* Additional Bold Startup Styles */
.el-button-group {
    display: flex;
    gap: var(--el-spacing-md);
    flex-wrap: wrap;
}

.el-h1 span.el-highlight {
    position: relative;
    display: inline-block;
}

.el-h1 span.el-highlight svg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 15px;
    color: var(--el-primary);
    stroke-width: 4;
}

/* Check list styles */
.el-check-list {
    list-style: none;
    padding-left: 0;
    margin: var(--el-spacing-lg) 0;
}

.el-check-item {
    display: flex;
    align-items: center;
    gap: var(--el-spacing-sm);
    margin-bottom: var(--el-spacing-xs);
    font-size: 1.125rem;
}

.el-check-item .el-icon {
    width: 20px;
    height: 20px;
    color: var(--el-primary);
    flex-shrink: 0;
}

.el-pullquote p {
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.el-contact-info-block {
    display: flex;
    align-items: center;
    margin-bottom: var(--el-spacing-md);
    gap: var(--el-spacing-sm);
}

.el-contact-info-block .el-icon {
    width: 24px;
    height: 24px;
    color: var(--el-primary);
    stroke-width: 2;
    flex-shrink: 0;
}

.el-contact-info-block span,
.el-contact-info-block a {
    font-size: 1.125rem;
    color: var(--el-text);
    line-height: 1.4;
}

.el-contact-info-block a:hover {
    color: var(--el-primary);
}

.el-testimonial-card .el-icon-large {
    width: 40px;
    height: 40px;
    margin-bottom: var(--el-spacing-sm);
}

/* === Quality polish === */
.el-card, [class*="el-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.el-card:hover, [class*="el-card"]:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.16); }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.el-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.el-faq-item.active .el-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.el-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.el-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.el-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.el-section { padding: 96px 0; background: #eff6ff; }
.el-section-alt { padding: 96px 0; background: color-mix(in srgb, #1d4ed8 4%, #eff6ff); }
.el-grid { display: grid; gap: 32px; }
.el-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.el-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.el-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.el-text-center { text-align: center; }
/* Header / Nav */
.el-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #1e3a5f 8%, transparent); }
.el-header > .el-container, .el-header .el-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.el-brand, .el-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Space Grotesk; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #1d4ed8; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.el-brand-mark { display: inline-flex; color: #1d4ed8; flex-shrink: 0; }
.el-brand-mark svg { display: block; width: 24px; height: 24px; }
.el-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.el-nav-list, .el-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.el-nav-link { color: #1e3a5f; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.el-nav-link + .el-nav-link { margin-left: 0; }
.el-nav-link:hover { color: #1d4ed8; }
.el-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.el-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #1d4ed8 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #1d4ed8 7%, #eff6ff) 0%, #eff6ff 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.el-hero [class*="ghost"], .el-hero [class*="bg-text"], .el-hero [class*="watermark"], .el-hero [class*="hero-bg"], .el-hero [aria-hidden="true"][class*="text"], .el-hero [data-decorative="true"] { display: none !important; }
.el-hero .el-hero-image, .el-hero .el-dashboard-mockup { position: relative !important; }
.el-hero .el-hero-image { max-width: 100%; }
.el-hero .el-hero-image > * { max-width: 100%; }
.el-hero .el-stats { position: static !important; }
.el-hero > .el-container { max-width: 1200px; }
.el-hero h1, .el-hero .el-h1 { font-family: Space Grotesk; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #1e3a5f; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.el-hero p, .el-hero .el-hero-sub, .el-hero .el-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #93c5fd; max-width: 48ch; margin: 0; }
.el-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.el-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.el-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.el-hero-image { position: relative; }
.el-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #1d4ed8 12%, transparent); z-index: 0; }
.el-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.el-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #93c5fd; max-width: 60ch; }
.el-h1 { font-family: Space Grotesk; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #1e3a5f; margin: 0; }
.el-h2 { font-family: Space Grotesk; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #1e3a5f; margin: 0 0 24px; }
.el-h3 { font-family: Space Grotesk; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #1e3a5f; margin: 0 0 12px; }
.el-subheading { font-size: 1.125rem; line-height: 1.7; color: #93c5fd; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.el-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.el-button-primary { background: #1d4ed8; color: #fff; border-color: #1d4ed8; }
.el-button-primary:hover { background: #1e3a8a; border-color: #1e3a8a; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #1d4ed8 50%, transparent); }
.el-button-secondary { background: #1e3a8a; color: #fff; border-color: #1e3a8a; }
.el-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.el-button-outline { background: transparent; color: #1d4ed8; border-color: #1d4ed8; }
.el-button-outline:hover { background: #1d4ed8; color: #fff; }
.el-link { color: #1d4ed8; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.el-link:hover { gap: 10px; }
/* Cards */
.el-card { background: #fff; border: 1px solid color-mix(in srgb, #1e3a5f 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.el-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.el-card-feature, .el-card-service, .el-card-process { text-align: left; }
/* Icons */
.el-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #1d4ed8 10%, transparent); color: #1d4ed8; }
.el-icon-wrapper svg, .el-icon-wrapper .el-icon { width: 28px; height: 28px; stroke: #1d4ed8; }
.el-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.el-icon-large { width: 48px; height: 48px; stroke: #1d4ed8; }
/* Check list */
.el-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.el-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.el-check-item .el-icon { color: #1d4ed8; margin-top: 4px; }
/* Editorial */
.el-pullquote { font-family: Space Grotesk; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #1e3a5f; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.el-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #1d4ed8; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.el-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.el-stat-item { text-align: center; }
.el-stat-number { display: block; font-family: Space Grotesk; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #1d4ed8; line-height: 1; letter-spacing: -0.03em; }
.el-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #93c5fd; }
/* Testimonials */
.el-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.el-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #1e3a5f 6%, transparent); }
.el-testimonial-quote { font-style: italic; line-height: 1.7; color: #1e3a5f; margin-bottom: 16px; }
.el-testimonial-cite { font-weight: 600; color: #1d4ed8; font-size: 0.95rem; }
.el-testimonial-stars { color: #84cc16; margin-bottom: 12px; }
/* FAQ */
.el-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.el-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #1e3a5f 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.el-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.el-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #1e3a5f; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.el-faq-q::after { content: '+'; font-size: 1.5rem; color: #1d4ed8; transition: transform 0.3s ease; flex-shrink: 0; }
.el-faq-item.active .el-faq-q::after { transform: rotate(45deg); }
/* CTA */
.el-cta { padding: 96px 0; background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%); color: #fff; text-align: center; }
.el-cta .el-h2, .el-cta h2 { color: #fff; }
.el-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.el-cta .el-button-primary { background: #fff; color: #1d4ed8; border-color: #fff; }
.el-cta .el-button-primary:hover { background: #eff6ff; color: #1d4ed8; }
/* Form */
.el-form, .el-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #1e3a5f 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #1d4ed8 40%, transparent); text-align: left; color: #1e3a5f; }
.el-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .el-form-row { grid-template-columns: 1fr; } }
.el-form-group { display: flex; flex-direction: column; gap: 8px; }
.el-form-label, .el-form label { font-weight: 600; font-size: 0.9rem; color: #1e3a5f; letter-spacing: 0.01em; }
.el-form-input, .el-form-textarea, .el-form input:not([type="submit"]), .el-form textarea, .el-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #1e3a5f 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #1d4ed8 2%, #fff); color: #1e3a5f; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.el-form-input:hover, .el-form-textarea:hover { border-color: color-mix(in srgb, #1d4ed8 35%, transparent); }
.el-form-input:focus, .el-form-textarea:focus, .el-form input:focus, .el-form textarea:focus { outline: none; border-color: #1d4ed8; box-shadow: 0 0 0 4px color-mix(in srgb, #1d4ed8 18%, transparent); }
.el-form-textarea, .el-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.el-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.el-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.el-form-error[hidden], .el-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.el-form-error.is-visible, .el-form-success.is-visible { display: block; }
.el-cta .el-form, .el-cta .el-contact-form { color: #1e3a5f; }
.el-cta .el-form button[type="submit"], .el-cta .el-contact-form button[type="submit"] { background: #1d4ed8; color: #fff; border-color: #1d4ed8; }
/* Footer */
.el-footer { background: #1e3a5f; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.el-footer .el-h3, .el-footer h3, .el-footer h4 { color: #fff; font-family: Space Grotesk; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.el-footer .el-logo { color: #fff; }
.el-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.el-footer-col { display: flex; flex-direction: column; gap: 12px; }
.el-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.el-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.el-footer-link:hover { color: #fff; }
.el-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.el-social-links { display: flex; gap: 16px; }
.el-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.el-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .el-hero { padding: 80px 0 64px; }
  .el-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .el-section, .el-section-alt { padding: 64px 0; }
  .el-cta { padding: 64px 0; }
  .el-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .el-nav-list { display: none; }
  .el-mobile-toggle { display: inline-flex; }
  .el-nav.active .el-nav-list, .el-header.active .el-nav-list, .el-nav-list.active, .el-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .el-card { padding: 24px; }
  .el-form, .el-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: bold_startup === */
.el-h1 { font-family: 'Archivo Black', 'Space Grotesk', sans-serif; font-weight: 900; font-size: clamp(3.25rem, 8vw, 6.5rem); letter-spacing: -0.03em; line-height: 0.95; }
.el-card, .el-card-feature { border: 2px solid #111; box-shadow: 6px 6px 0 0 #111; border-radius: 14px; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.el-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 0 #111; }
.el-button-primary { background: #1d4ed8; color: #fff; border: 2px solid #111; border-radius: 10px; box-shadow: 4px 4px 0 0 #111; }
.el-button-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 #111; }
.el-section-alt { background: color-mix(in srgb, #84cc16 18%, #eff6ff); }