/* ===================================
   CSS Variables (Stripe-inspired)
   =================================== */
:root {
    /* Colors - AugmentedHeart Brand */
    --primary-blue: #53bee4;
    --primary-green: #4fbaae;
    --primary-dark: #1f2937;
    --primary-light: #6b7280;
    --accent-blue: #53bee4;
    --accent-green: #4fbaae;
    --primary-lightblue: #f3f7fc;

    --bg-white: #ffffff;
    --bg-light: #f3f7fc;
    --bg-dark: #1f2937;
    --border-light: #e5e7eb;

    --text-dark: #1f2937;
    --text-medium: #6b7280;
    --text-light: #9ca3af;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Arial', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Arial', sans-serif;

    /* Container */
    --container-max: 1200px;
    --container-padding: 2rem;

    /* Transitions */
    --transition-base: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
}

#ah-main {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.04em;
}

/* ===================================
   Utilities
   =================================== */
.ah-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.ah-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-purple);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.ah-skip-link:focus {
    top: 0;
}

/* ===================================
   Header & Navigation
   =================================== */
.ah-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s var(--transition-base);
}

.ah-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.ah-logo {
    height: 48px;
    width: auto;
}

.ah-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.ah-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.2px;
    transition: color 0.2s var(--transition-base);
}

.ah-nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Hero Section
   =================================== */
.ah-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    position: relative;
    padding: 8rem 0 4rem;
    overflow-x: clip;
}

.ah-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #53bee4 0%, #4fbaae 100%);
    clip-path: polygon(100% 0, 100% 75%, 40% 0);
    opacity: 0.9;
    z-index: 0;
}

.ah-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ah-hero-title {
    font-size: clamp(40px, 4vw, 68px);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.ah-gradient-text {
    /* background: linear-gradient(135deg, #4fbaae 0%, #53bee4 100%); */
    background: var(--accent-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ah-hero-description {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ah-hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.ah-btn {
    padding: 1rem 2rem;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s var(--transition-base);
    font-family: var(--font-sans);
}

.ah-btn-primary {
    background: var(--primary-blue);
    color: white;
}

.ah-btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(83, 190, 228, 0.3);
}

.ah-btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.ah-btn-secondary:hover {
    background: rgba(83, 190, 228, 0.1);
}

.ah-btn-primary-inverse {
    background: var(--primary-blue);
    color: white;
}

.ah-btn-primary-inverse:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(83, 190, 228, 0.3);
}

.ah-btn-secondary-inverse {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.ah-btn-secondary-inverse:hover {
    background: rgba(83, 190, 228, 0.05);
}

.ah-btn-white{
    background: white;
    color: var(--accent-blue)
}

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

.ah-stat {
    text-align: left;
}

.ah-stat-number {
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.ah-stat-label {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-medium);
}

/* ===================================
   Placeholder Elements
   =================================== */
.placeholder-image {
    background: var(--bg-light);
    border: 2px dashed var(--border-light);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
    padding: 2rem;
}

.ah-hero-visual {
    margin-right: calc(-1 * var(--container-padding));
}

.ah-hero-image {
    width: 225%;
    max-width: 1400px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.ah-sub-image{
    width:100%;
    max-width: 1400px;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

/* ===================================
   Trusted By Section
   =================================== */
.trusted-by {
    padding: 3rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.trusted-text {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.placeholder-logo {
    background: white;
    border: 2px dashed var(--border-light);
    border-radius: 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding: 1rem;
}

/* ===================================
   Section Styles
   =================================== */
.ah-problem-section,
.ah-features-section,
.ah-impact-section,
.ah-team-section {
    padding: var(--spacing-xl) 0;
}

.ah-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.ah-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.ah-section-title.ah-center {
    text-align: center;
}

.ah-section-description {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===================================
   Problem Section
   =================================== */
.problem-section {
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.problem-card {
    text-align: center;
}

.problem-icon {
    margin-bottom: 1.5rem;
}

.placeholder-icon {
    font-size: 3rem;
    height: 80px;
    width: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.problem-card p {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===================================
   Features Section
   =================================== */
.ah-features-section {
    background: var(--bg-light);
    overflow-x: clip;
}

.ah-feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.ah-feature-showcase:last-child {
    margin-bottom: 0;
}

.ah-feature-showcase.ah-reverse {
    direction: rtl;
}

.ah-feature-showcase.ah-reverse > * {
    direction: ltr;
}

.ah-feature-title {
    font-size: 38px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.ah-feature-text {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ah-feature-list {
    list-style: none;
    padding: 0;
}

.ah-feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-medium);
}

.ah-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.ah-feature-visual .ah-placeholder-image {
    background: white;
    border: 2px dashed var(--border-light);
    color: var(--text-light);
}

/* ===================================
   Workflow Diagram
   =================================== */
.ah-workflow-diagram {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3rem 1rem;
    background: transparent;
    border-radius: 12px;
}

.ah-workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ah-workflow-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(83, 190, 228, 0.15);
    transition: transform 0.3s var(--transition-base), box-shadow 0.3s var(--transition-base);
}

.ah-workflow-step:hover .ah-workflow-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(83, 190, 228, 0.25);
}

.ah-workflow-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

.ah-workflow-arrow {
    flex: 1;
    position: relative;
    height: 2px;
    margin: 0 1rem;
    margin-top: 40px;
    max-width: 80px;
}

.ah-arrow-line {
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    position: absolute;
    top: 0;
}

.ah-arrow-head {
    position: absolute;
    right: -2px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-blue);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.ah-flow-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    top: -3px;
    animation: flowAnimation 2s ease-in-out infinite;
    opacity: 0;
}

.ah-workflow-arrow:nth-child(2) .ah-flow-dot {
    animation-delay: 0s;
}

.ah-workflow-arrow:nth-child(4) .ah-flow-dot {
    animation-delay: 0.5s;
}

.ah-workflow-arrow:nth-child(6) .ah-flow-dot {
    animation-delay: 1s;
}

@keyframes flowAnimation {
    0% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Responsive workflow */
@media (max-width: 768px) {
    .ah-workflow-diagram {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        align-items: center;
    }

    .ah-workflow-arrow {
        transform: rotate(90deg);
        margin: 0;
        margin-top: 0;
        max-width: 60px;
    }
}

/* ===================================
   Impact Section
   =================================== */
.impact-section {
    background: white;
    color: var(--text-dark);
}

.impact-section .section-title {
    color:  var(--text-dark);
    margin-bottom: 4rem;
}

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

.impact-card {
    text-align: center;
}

.impact-number {
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.impact-label {
    font-size: 18px;
    font-weight: 300;
    color:  var(--text-dark);
}

/* ===================================
   Team Section
   =================================== */
.ah-team-section {
    background: white;
}

.ah-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ah-team-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s var(--transition-base);
}

.ah-team-card:hover {
    transform: translateY(-5px);
}

.ah-placeholder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    border: 3px dashed var(--border-light);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
}

.ah-team-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 3px solid var(--border-light);
}

.ah-team-name {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.ah-team-role {
    font-size: 15px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.ah-team-bio {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-medium);
    line-height: 1.6;
}

.ah-at-mention {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===================================
   Jobs Section
   =================================== */
.ah-jobs-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.ah-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.ah-job-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: transform 0.3s var(--transition-base), box-shadow 0.3s var(--transition-base);
    border: 1px solid var(--border-light);
}

.ah-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ah-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.ah-job-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}

.ah-job-type {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    background: rgba(83, 190, 228, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

.ah-job-summary {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ah-job-learn-more {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-blue);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s var(--transition-base);
}

.ah-job-learn-more:hover {
    opacity: 0.7;
}

/* ===================================
   Modal Overlay
   =================================== */
.ah-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.ah-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 1400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ah-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s var(--transition-base);
}

.ah-modal-close:hover {
    color: var(--text-dark);
}

.ah-modal-title {
    font-size: 38px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    padding: 2rem 2rem 1rem 2rem;
    padding-right: 4rem;
}

.ah-modal-meta {
    padding: 0 2rem 1rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.ah-modal-type {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    background: rgba(83, 190, 228, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.ah-modal-body {
    padding: 2rem;
}

.ah-modal-body h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.ah-modal-body h3:first-child {
    margin-top: 0;
}

.ah-modal-body p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ah-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.ah-modal-body ul li {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-medium);
    line-height: 1.6;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.ah-modal-body ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.ah-modal-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.ah-modal-footer .btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   CTA Section
   =================================== */
.ah-cta-section {
    background: linear-gradient(135deg, #53bee4 0%, #4fbaae 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

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

.ah-cta-title {
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.ah-cta-description {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.ah-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===================================
   Address Section
   =================================== */
.ah-address-section {
    width: 100%;
    padding: 0;
}

.ah-address-banner {
    width: 100%;
    height: 800px;
    background-image: url('../assets/images/kgracht2.jpg');
    background-size: cover;
    background-position: center 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.ah-address-overlay {
    position: absolute;
    z-index: 2;
    background: rgba(79, 186, 174, 0.9);
    padding: 3rem;
    max-width: 450px;
    border-radius: 0;
    left: 75%;
    transform: translateX(-50%);
}

.ah-address-title {
    font-size: 38px;
    font-weight: 500;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.ah-address-details h3 {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.ah-address-details p {
    font-size: 18px;
    font-weight: 300;
    color: white;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.ah-address-contact {
    margin-top: 1.5rem;
}

.ah-address-contact p {
    font-size: 18px;
    font-weight: 300;
    color: white;
}

.ah-address-contact strong {
    font-weight: 500;
}

.ah-address-contact a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s var(--transition-base);
}

.ah-address-contact a:hover {
    opacity: 0.8;
}

/* ===================================
   Footer
   =================================== */
.ah-footer {
    background: white;
    color: var(--text-dark);
    padding: 2rem 0;
    text-align: center;
}

.ah-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ah-footer-text {
    font-size: 15px;
    font-weight: 300;
}

.ah-no-underline {
  text-decoration: none;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 2700px) {
    .ah-hero-image,
    .ah-sub-image {
        max-width: 880px;
    }
}

@media (max-width: 2000px) {
    .ah-hero-image,
    .ah-sub-image {
        max-width: 600px;
    }
}

@media (max-width: 1200px) {
    .ah-hero-visual {
        margin-right: 0;
        margin-left: 0;
    }

    .ah-hero-image {
        width: 100%;
    }

    .ah-sub-image {
        width: 100% !important;
    }

    .ah-feature-visual {
        padding: 0 1rem;
    }
}

@media (max-width: 1000px) {
    .ah-hero::before {
        display: none;
    }
}

@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }

    .ah-hero-content,
    .ah-feature-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ah-feature-showcase.ah-reverse {
        direction: ltr;
    }

    .ah-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .ah-hero-visual {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .ah-nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ah-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .ah-hero-cta {
        flex-direction: column;
    }

    .ah-btn {
        width: 100%;
    }

    .ah-hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ah-stat {
        text-align: center;
    }

    .ah-hero-visual {
        padding: 0 1rem;
    }

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

    .ah-problem-grid,
    .ah-team-grid {
        grid-template-columns: 1fr;
    }

    .ah-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .ah-cta-buttons {
        flex-direction: column;
    }

    .ah-address-banner {
        height: 500px;
        padding: 0 2rem;
        justify-content: center;
    }

    .ah-address-overlay {
        left: 50%;
        max-width: 500px;
        padding: 2.5rem;
    }

    .ah-address-title {
        font-size: 32px;
    }

    .ah-address-details h3 {
        font-size: 20px;
    }

    .ah-address-details p,
    .ah-address-contact p {
        font-size: 16px;
    }

    .ah-modal {
        padding: 1rem;
    }

    .ah-modal-title {
        font-size: 28px;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        padding-right: 3rem;
    }

    .ah-modal-body {
        padding: 1.5rem;
    }

    .ah-modal-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        flex-direction: column;
    }

    .ah-modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ah-nav-menu {
        display: none;
    }

    .ah-impact-grid {
        grid-template-columns: 1fr;
    }

    .ah-logo-grid {
        grid-template-columns: 1fr;
    }

    .ah-jobs-grid {
        grid-template-columns: 1fr;
    }

    .ah-address-banner {
        height: 450px;
        padding: 1rem;
    }

    .ah-address-overlay {
        left: 50%;
        max-width: calc(100% - 2rem);
        padding: 2rem;
    }

    .ah-address-title {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }

    .ah-address-details h3 {
        font-size: 18px;
    }

    .ah-address-details p,
    .ah-address-contact p {
        font-size: 15px;
    }
}
