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

:root {
    --ehzz-primary: #0a4d8f;
    --ehzz-primary-dark: #073a6b;
    --ehzz-secondary: #1a73e8;
    --ehzz-accent: #00d4aa;
    --ehzz-dark: #0f1419;
    --ehzz-text: #1e293b;
    --ehzz-text-light: #64748b;
    --ehzz-light: #f8fafc;
    --ehzz-white: #ffffff;
    --ehzz-border: #e2e8f0;
    --ehzz-error: #ef4444;
    --ehzz-success: #10b981;
    --ehzz-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --ehzz-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --ehzz-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --ehzz-shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ehzz-text);
    background: var(--ehzz-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    color: var(--ehzz-dark);
    font-weight: 600;
}

h1 { 
    font-size: clamp(38px, 6vw, 58px); 
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 { 
    font-size: clamp(30px, 4vw, 44px); 
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 { 
    font-size: clamp(21px, 2.5vw, 26px); 
    font-weight: 600;
}

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

a {
    color: var(--ehzz-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--ehzz-primary);
}

/* Header & Navigation */
.ehzz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ehzz-border);
    box-shadow: var(--ehzz-shadow-sm);
}

.ehzz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.125rem 1.5rem;
}

.ehzz-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--ehzz-primary);
    letter-spacing: -0.03em;
    transition: transform 0.3s ease;
}

.ehzz-logo:hover {
    transform: scale(1.05);
}

.ehzz-menu {
    display: none;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.ehzz-menu a {
    color: var(--ehzz-text);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    position: relative;
}

.ehzz-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ehzz-secondary), var(--ehzz-accent));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ehzz-menu a:hover::after {
    width: 100%;
}

.ehzz-nav-cta {
    background: linear-gradient(135deg, var(--ehzz-primary), var(--ehzz-secondary));
    color: var(--ehzz-white) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(10, 77, 143, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ehzz-nav-cta::after {
    display: none !important;
}

.ehzz-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 77, 143, 0.35);
}

.ehzz-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ehzz-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ehzz-burger:hover {
    transform: scale(1.1);
}

/* Hero Section */
.ehzz-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 1.5rem 5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.ehzz-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(5deg); }
}

.ehzz-hero-content {
    max-width: 640px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.ehzz-hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--ehzz-secondary), var(--ehzz-accent));
    color: var(--ehzz-white);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.25);
}

.ehzz-hero h1 {
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, var(--ehzz-dark), var(--ehzz-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ehzz-hero p {
    font-size: 1.1875rem;
    color: var(--ehzz-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.ehzz-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, var(--ehzz-primary), var(--ehzz-secondary));
    color: var(--ehzz-white);
    padding: 1.125rem 2.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(10, 77, 143, 0.3);
    position: relative;
    overflow: hidden;
}

.ehzz-hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ehzz-secondary), var(--ehzz-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ehzz-hero-btn:hover::before {
    opacity: 1;
}

.ehzz-hero-btn:hover {
    color: var(--ehzz-white);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 77, 143, 0.4);
}

.ehzz-hero-visual {
    position: relative;
    z-index: 1;
}

.ehzz-hero-visual img {
    border-radius: 20px;
    box-shadow: var(--ehzz-shadow-xl);
    transition: transform 0.5s ease;
}

.ehzz-hero-visual:hover img {
    transform: scale(1.02);
}

/* Pain Points Section */
.ehzz-pain-points {
    padding: 6rem 1.5rem;
    background: var(--ehzz-white);
}

.ehzz-pain-points h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.ehzz-pain-grid {
    display: grid;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ehzz-pain-item {
    background: linear-gradient(135deg, var(--ehzz-light) 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--ehzz-secondary);
    box-shadow: var(--ehzz-shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ehzz-pain-item:hover {
    transform: translateX(12px);
    box-shadow: var(--ehzz-shadow-md);
    border-left-width: 6px;
}

.ehzz-pain-item i {
    font-size: 2.25rem;
    background: linear-gradient(135deg, var(--ehzz-secondary), var(--ehzz-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.ehzz-pain-item h3 {
    margin-bottom: 1rem;
    color: var(--ehzz-dark);
}

.ehzz-pain-item p {
    color: var(--ehzz-text-light);
    line-height: 1.75;
}

/* Solutions Section */
.ehzz-solutions {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--ehzz-dark) 0%, #1a2332 100%);
    color: var(--ehzz-white);
    position: relative;
    overflow: hidden;
}

.ehzz-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.ehzz-solutions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.ehzz-solutions-intro h2 {
    color: var(--ehzz-white);
    margin-bottom: 1.5rem;
}

.ehzz-solutions-intro p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1875rem;
    line-height: 1.8;
}

.ehzz-pillar-flow {
    display: grid;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ehzz-pillar {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ehzz-pillar:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ehzz-pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ehzz-secondary), var(--ehzz-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.ehzz-pillar-icon i {
    font-size: 1.75rem;
    color: var(--ehzz-white);
}

.ehzz-pillar h3 {
    color: var(--ehzz-white);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.ehzz-pillar p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.ehzz-pillar img {
    border-radius: 16px;
    opacity: 0.9;
    transition: all 0.4s ease;
    box-shadow: var(--ehzz-shadow-md);
}

.ehzz-pillar:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Process Section */
.ehzz-process {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--ehzz-light) 0%, #ffffff 100%);
}

.ehzz-process h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.ehzz-timeline {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.ehzz-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--ehzz-secondary), var(--ehzz-accent));
    border-radius: 10px;
}

.ehzz-step {
    display: flex;
    gap: 2rem;
    padding-bottom: 3rem;
    position: relative;
}

.ehzz-step:last-child {
    padding-bottom: 0;
}

.ehzz-step-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ehzz-primary), var(--ehzz-secondary));
    color: var(--ehzz-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(10, 77, 143, 0.3);
    transition: transform 0.3s ease;
}

.ehzz-step:hover .ehzz-step-num {
    transform: scale(1.1);
}

.ehzz-step-content {
    background: var(--ehzz-white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--ehzz-shadow-sm);
    transition: all 0.3s ease;
}

.ehzz-step:hover .ehzz-step-content {
    box-shadow: var(--ehzz-shadow-md);
    transform: translateX(8px);
}

.ehzz-step-content h3 {
    margin-bottom: 0.75rem;
    color: var(--ehzz-dark);
}

.ehzz-step-content p {
    color: var(--ehzz-text-light);
    line-height: 1.75;
}

/* Results Section */
.ehzz-results {
    padding: 6rem 1.5rem;
    background: var(--ehzz-white);
    text-align: center;
}

.ehzz-results h2 {
    margin-bottom: 4rem;
}

.ehzz-metrics {
    display: grid;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.ehzz-metric {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--ehzz-primary), var(--ehzz-secondary));
    border-radius: 20px;
    color: var(--ehzz-white);
    box-shadow: var(--ehzz-shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ehzz-metric::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ehzz-secondary), var(--ehzz-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ehzz-metric:hover::before {
    opacity: 1;
}

.ehzz-metric:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(10, 77, 143, 0.35);
}

.ehzz-metric-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(44px, 8vw, 64px);
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.ehzz-metric-label {
    font-size: 1.0625rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.ehzz-results-img {
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: var(--ehzz-shadow-xl);
    transition: transform 0.5s ease;
}

.ehzz-results-img:hover {
    transform: scale(1.02);
}

/* Contact Section */
.ehzz-contact {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, var(--ehzz-light) 100%);
}

.ehzz-contact-text {
    max-width: 540px;
    margin-bottom: 3rem;
}

.ehzz-contact-text h2 {
    margin-bottom: 1.25rem;
}

.ehzz-contact-text p {
    color: var(--ehzz-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.ehzz-contact-info {
    font-style: normal;
}

.ehzz-contact-info i {
    color: var(--ehzz-secondary);
    margin-right: 0.625rem;
}

.ehzz-form {
    background: var(--ehzz-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--ehzz-shadow-lg);
    max-width: 540px;
}

.ehzz-field {
    margin-bottom: 1.75rem;
}

.ehzz-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--ehzz-dark);
    font-size: 0.9375rem;
}

.ehzz-field input,
.ehzz-field textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--ehzz-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--ehzz-white);
}

.ehzz-field input:focus,
.ehzz-field textarea:focus {
    outline: none;
    border-color: var(--ehzz-secondary);
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.12);
    transform: translateY(-2px);
}

.ehzz-field input:valid:not(:placeholder-shown),
.ehzz-field textarea:valid:not(:placeholder-shown) {
    border-color: var(--ehzz-success);
}

.ehzz-field input:invalid:not(:placeholder-shown):not(:focus),
.ehzz-field textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--ehzz-error);
}

.ehzz-field textarea {
    resize: vertical;
    min-height: 140px;
}

.ehzz-submit {
    width: 100%;
    padding: 1.125rem;
    background: linear-gradient(135deg, var(--ehzz-primary), var(--ehzz-secondary));
    color: var(--ehzz-white);
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(10, 77, 143, 0.3);
    position: relative;
    overflow: hidden;
}

.ehzz-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ehzz-secondary), var(--ehzz-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ehzz-submit:hover::before {
    opacity: 1;
}

.ehzz-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(10, 77, 143, 0.4);
}

.ehzz-submit:active {
    transform: translateY(-1px);
}

/* Footer */
.ehzz-footer {
    background: linear-gradient(135deg, var(--ehzz-dark) 0%, #1a2332 100%);
    color: var(--ehzz-white);
    padding: 4rem 1.5rem 2rem;
}

.ehzz-footer-top {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ehzz-footer-brand .ehzz-logo {
    color: var(--ehzz-white);
    display: block;
    margin-bottom: 1rem;
}

.ehzz-footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.7;
}

.ehzz-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.ehzz-footer-links button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    font-size: 0.9375rem;
    cursor: pointer;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.ehzz-footer-links button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ehzz-accent);
    transition: width 0.3s ease;
}

.ehzz-footer-links button:hover {
    color: var(--ehzz-white);
}

.ehzz-footer-links button:hover::after {
    width: 100%;
}

.ehzz-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Cookie Banner */
.ehzz-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--ehzz-dark), #1a2332);
    color: var(--ehzz-white);
    padding: 1.5rem 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.ehzz-cookie-banner.active {
    display: flex;
}

.ehzz-cookie-banner p {
    font-size: 0.9375rem;
    text-align: center;
    line-height: 1.6;
}

.ehzz-cookie-actions {
    display: flex;
    gap: 1rem;
}

.ehzz-cookie-accept,
.ehzz-cookie-decline {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ehzz-cookie-accept {
    background: linear-gradient(135deg, var(--ehzz-accent), #00e5b8);
    color: var(--ehzz-white);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.ehzz-cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ehzz-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ehzz-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.4);
}

.ehzz-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Modal */
.ehzz-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ehzz-modal.active {
    opacity: 1;
    visibility: visible;
}

.ehzz-modal-content {
    background: var(--ehzz-white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--ehzz-shadow-xl);
}

.ehzz-modal.active .ehzz-modal-content {
    transform: translateY(0);
}

.ehzz-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: var(--ehzz-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--ehzz-text);
    transition: all 0.3s ease;
}

.ehzz-modal-close:hover {
    background: var(--ehzz-border);
    transform: rotate(90deg);
}

.ehzz-modal-content h2 {
    margin-bottom: 1.75rem;
    padding-right: 3rem;
}

.ehzz-modal-content p {
    color: var(--ehzz-text-light);
    line-height: 1.85;
    font-size: 1rem;
}

/* Animations */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .ehzz-burger {
        display: none;
    }
    
    .ehzz-menu {
        display: flex;
    }
    
    .ehzz-hero {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
        padding: 0 3rem;
    }
    
    .ehzz-hero-content {
        flex: 1;
        margin-bottom: 0;
    }
    
    .ehzz-hero-visual {
        flex: 1;
    }
    
    .ehzz-pain-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ehzz-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ehzz-contact {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 5rem;
    }
    
    .ehzz-contact-text {
        margin-bottom: 0;
    }
    
    .ehzz-footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .ehzz-cookie-banner {
        flex-direction: row;
        justify-content: center;
        padding: 1.75rem 2rem;
    }
}

@media (min-width: 1024px) {
    .ehzz-nav {
        padding: 1.25rem 3rem;
    }
    
    .ehzz-pain-points,
    .ehzz-solutions,
    .ehzz-process,
    .ehzz-results {
        padding: 7rem 3rem;
    }
    
    .ehzz-pillar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 2.5rem;
        align-items: center;
    }
    
    .ehzz-pillar-icon {
        margin-bottom: 0;
    }
    
    .ehzz-pillar p {
        margin-bottom: 0;
    }
    
    .ehzz-pillar img {
        width: 240px;
    }
    
    .ehzz-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ehzz-step {
        width: 50%;
        padding-right: 3.5rem;
    }
    
    .ehzz-step:nth-child(even) {
        margin-left: auto;
        padding-right: 0;
        padding-left: 3.5rem;
        flex-direction: row-reverse;
        text-align: right;
    }
    
    .ehzz-step-num {
        position: absolute;
        right: -28px;
    }
    
    .ehzz-step:nth-child(even) .ehzz-step-num {
        right: auto;
        left: -28px;
    }
}

@media (min-width: 1280px) {
    .ehzz-hero {
        gap: 6rem;
    }
    
    .ehzz-contact {
        gap: 6rem;
    }
}