.garuda-hero {
    background-color: var(--bg-surface);
    padding: 8rem 0 6rem 0;
    text-align: center;
}

.garuda-hero .content {
    max-width: 800px;
    margin: 0 auto;
}

.garuda-wordmark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5rem;
    line-height: 1;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin: 0 0 2rem 0;
}

.garuda-hero-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto 2.5rem auto;
    display: block;
}

.garuda-tagline {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.25rem;
    line-height: 1.2;
    min-height: 1.2em;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.garuda-tagline.typewriter {
    display: block;
    white-space: normal;
}

.garuda-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    opacity: 0.7;
    margin: 0;
}

.garuda-contact {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 5rem;
}

.garuda-contact h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.garuda-contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.garuda-story {
    background-color: var(--advantages-background-color);
    padding: 5rem 0;
}

.garuda-story-intro {
    max-width: 1080px;
    margin: 0 auto 4rem auto;
}

.garuda-story-copy {
    max-width: 980px;
    margin-top: 1.5rem;
}

.garuda-story-title {
    max-width: 980px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.garuda-story-copy p {
    margin: 0;
}

.garuda-story-copy p + p {
    margin-top: 1rem;
}

.garuda-story-copy a {
    color: var(--button-background-color);
    font-weight: 700;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

.garuda-story-featured-quote {
    max-width: 44rem;
    margin: 2rem 0 0 0;
    padding: 0.65rem 0 0.65rem 1.25rem;
    border-left: 4px solid var(--button-background-color);
    color: var(--button-background-color);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.45;
    text-align: left;
}

.garuda-story-featured-quote span {
    display: block;
}

.garuda-story-featured-quote cite {
    display: block;
    margin-top: 0.7rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    white-space: normal;
}

.garuda-story-slider {
    --garuda-story-transition-duration: 740ms;
    --garuda-preview-scroll-duration: 6500ms;
    position: relative;
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
    align-items: center;
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
}

.garuda-story-window {
    min-height: 640px;
    overflow: visible;
    position: relative;
}

.garuda-story-track {
    min-height: inherit;
    position: relative;
}

.garuda-story-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(110vw);
    z-index: 1;
}

.garuda-story-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 3;
}

.garuda-story-slide.is-entering-from-left {
    animation: garuda-story-enter-from-left var(--garuda-story-transition-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.garuda-story-slide.is-entering-from-right {
    animation: garuda-story-enter-from-right var(--garuda-story-transition-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.garuda-story-slide.is-exiting-to-right {
    animation: garuda-story-exit-to-right var(--garuda-story-transition-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.garuda-story-slide.is-exiting-to-left {
    animation: garuda-story-exit-to-left var(--garuda-story-transition-duration) cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes garuda-story-enter-from-left {
    from {
        opacity: 0;
        transform: translateX(-110vw);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes garuda-story-enter-from-right {
    from {
        opacity: 0;
        transform: translateX(110vw);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes garuda-story-exit-to-right {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(110vw);
    }
}

@keyframes garuda-story-exit-to-left {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-110vw);
    }
}

.garuda-story-slide .mac-window {
    width: 100%;
    margin-top: 0;
}

.garuda-story-slide .mac-body {
    height: clamp(340px, 48vw, 620px);
}

.garuda-story-nav {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--button-background-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7rem;
    padding: 1rem;
    transition: color 0.2s ease, opacity 0.3s ease, transform 0.2s ease;
    z-index: 6;
}

.garuda-story-nav:hover,
.garuda-story-nav:focus,
.garuda-story-nav:focus-visible {
    color: var(--brand-navy);
    opacity: 1;
    transform: translateY(-2px);
}

.garuda-story-nav-icon {
    width: 2.1rem;
    height: 3.6rem;
    overflow: visible;
}

.garuda-story-nav-icon path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.garuda-story-slider.is-sliding .garuda-story-nav {
    opacity: 0;
    pointer-events: none;
}

.garuda-features {
    background-color: var(--bg-surface);
    padding: 5rem 0 1rem 0;
    overflow-x: hidden;
}

.garuda-carousel {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 4rem 0 0 0;
}

.garuda-feature {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

.garuda-feature.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 10;
}

.garuda-feature.previous {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 5;
}

.garuda-feature img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid rgba(25, 22, 51, 0.08);
    box-shadow: var(--shadow);
    transform: rotate(14deg) scale(0.85);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

.garuda-feature.active img {
    transform: rotate(-3deg) scale(1);
}

.garuda-feature.previous img {
    transform: rotate(-14deg) scale(0.85);
}

.garuda-feature h3 {
    font-size: clamp(2rem, 4vw + 1rem, 3.4rem);
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
    min-height: 2.4em;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.mac-window {
    border-radius: 12px;
    box-shadow: 0 40px 100px rgba(25, 22, 51, 0.2), 0 15px 30px rgba(25, 22, 51, 0.1);
    overflow: hidden;
    background: white;
    border: 1px solid rgba(25, 22, 51, 0.1);
}

.mac-header {
    background: #f3f4f6;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(25, 22, 51, 0.08);
}

.mac-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.mac-header .dot.bg-red {
    background: #ff5f56;
}

.mac-header .dot.bg-yellow {
    background: #ffbd2e;
}

.mac-header .dot.bg-green {
    background: #27c93f;
}

.mac-title {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin-right: 60px;
}

.mac-body {
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
}

.mac-body img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(0);
    transition: transform var(--garuda-preview-scroll-duration, 6500ms) cubic-bezier(0.45, 0, 0.55, 1);
}

.mac-body.animate img {
    transform: translateY(var(--preview-scroll-distance, -65%));
}

.typewriter {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.typewriter::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--text-primary);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
    from,
    to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .garuda-story-slider {
        grid-template-columns: 3rem minmax(0, 1fr) 3rem;
        gap: 1rem;
    }

    .garuda-story-window {
        min-height: 520px;
    }
}

@media (max-width: 768px) {
    .garuda-wordmark {
        font-size: 3.5rem;
    }

    .garuda-tagline {
        font-size: 1.5rem;
    }

    .garuda-subtitle {
        font-size: 1rem;
    }

    .garuda-features {
        padding: 2rem 0;
    }

    .garuda-features .section-title {
        margin-bottom: 1rem;
    }

    .garuda-carousel {
        padding: 1rem 0;
    }

    .garuda-feature img {
        margin-bottom: 2rem;
    }

    .garuda-feature h3 {
        min-height: 1.2em;
    }

    .garuda-feature.active img {
        transform: rotate(-3deg) scale(1.12);
    }

    .garuda-story {
        padding: 3rem 0;
    }

    .garuda-story-intro {
        margin-bottom: 2.5rem;
    }

    .garuda-story-slider {
        grid-template-columns: 1fr;
        padding-bottom: 4rem;
    }

    .garuda-story-window {
        min-height: 430px;
    }

    .garuda-story-nav {
        bottom: 0;
        min-height: 4rem;
        padding: 0.5rem;
        position: absolute;
    }

    .garuda-story-nav-prev {
        left: 32%;
    }

    .garuda-story-nav-next {
        right: 32%;
    }

    .garuda-story-nav-icon {
        width: 1.8rem;
        height: 3rem;
    }

    .mac-body {
        height: 260px;
    }
}

@media (max-width: 500px) {
    .garuda-tagline {
        min-height: 2.4em;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}
