/* =========================================================
   ALLIANZ ESA EUROSHIP GMBH
   Main stylesheet
   ========================================================= */


/* ---------------------------------------------------------
   1. Variables & Reset
   --------------------------------------------------------- */

   :root {
    --navy: #10253f;
    --navy-dark: #091a2d;
    --blue: #1769aa;
    --blue-light: #eaf4fb;
    --accent: #27a6a1;

    --white: #ffffff;
    --off-white: #f7f9fb;
    --light: #eef2f5;

    --text: #1c2935;
    --muted: #65727f;
    --border: #dce3e9;

    --shadow-sm: 0 8px 25px rgba(16, 37, 63, 0.06);
    --shadow-md: 0 20px 50px rgba(16, 37, 63, 0.10);

    --container: 1180px;
    --radius: 14px;

    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


/* ---------------------------------------------------------
   2. Typography
   --------------------------------------------------------- */

h1,
h2,
h3,
h4 {
    font-family: "Manrope", sans-serif;
    color: var(--navy);
    line-height: 1.15;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    letter-spacing: -0.055em;
}

h2 {
    font-size: clamp(2.25rem, 4vw, 3.6rem);
    letter-spacing: -0.045em;
}

h3 {
    font-size: 1.35rem;
}

p {
    color: var(--muted);
}

.section {
    padding: 120px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label span {
    color: var(--blue);
    font-family: "Manrope", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
}

.section-label span::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--blue);
    margin: 0 0 3px 12px;
}

.section-label p {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   3. Header
   --------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(14px);
    transition:
        box-shadow var(--transition),
        border-color var(--transition);
}

.site-header.scrolled {
    border-color: var(--border);
    box-shadow: 0 5px 25px rgba(16, 37, 63, 0.07);
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--navy);
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
}

.logo-text small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.65rem;
    letter-spacing: 0.03em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav > a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color var(--transition);
}

.main-nav > a:hover {
    color: var(--blue);
}

.main-nav .nav-cta {
    padding: 11px 19px;
    border: 1px solid var(--navy);
    border-radius: 7px;
    color: var(--navy);
}

.main-nav .nav-cta:hover {
    color: white;
    background: var(--navy);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
    transition: transform var(--transition), opacity var(--transition);
}


/* ---------------------------------------------------------
   4. Buttons & Links
   --------------------------------------------------------- */

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 22px;
    border-radius: 7px;
    font-size: 0.86rem;
    font-weight: 700;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn span {
    font-size: 1.1rem;
    transition: transform var(--transition);
}

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

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 10px 25px rgba(23, 105, 170, 0.18);
}

.btn-primary:hover {
    background: #12598f;
}

.btn-light {
    background: white;
    color: var(--navy);
}

.btn-light:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.84rem;
    font-weight: 600;
    opacity: 0.9;
    transition: opacity var(--transition);
}

.text-link:hover {
    opacity: 1;
}

.text-link span {
    font-size: 1.1rem;
}


/* ---------------------------------------------------------
   5. Hero
   --------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(9, 26, 45, 0.98) 0%,
            rgba(9, 26, 45, 0.90) 42%,
            rgba(9, 26, 45, 0.55) 100%
        ),
        linear-gradient(
            135deg,
            #0b2742 0%,
            #154e70 48%,
            #173f55 100%
        );
}

.hero-background::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -120px;
    top: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 80px rgba(255, 255, 255, 0.02),
        0 0 0 160px rgba(255, 255, 255, 0.015);
}

.hero-background::after {
    content: "";
    position: absolute;
    right: 7%;
    bottom: 13%;
    width: 310px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-35deg);
    transform-origin: right;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--container));
    display: grid;
    grid-template-columns: 1fr 330px;
    align-items: center;
    gap: 80px;
    padding-top: 80px;
    padding-bottom: 130px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    color: white;
}

.hero h1 span {
    display: block;
    color: #69d0cc;
}

.hero-copy > p {
    max-width: 590px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 38px;
}

.hero-card {
    padding: 34px 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 10px;
    background: rgba(39, 166, 161, 0.16);
}

.hero-card-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #6bd3ce;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-card h3 {
    color: white;
    font-size: 1.55rem;
    line-height: 1.3;
}

.hero-card p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.83rem;
}

.hero-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bottom-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-bottom span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   6. About
   --------------------------------------------------------- */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
}

.about-content {
    max-width: 820px;
}

.about-content h2 {
    max-width: 720px;
    margin-bottom: 30px;
}

.about-content h2 em {
    color: var(--blue);
    font-style: normal;
}

.about-content .lead {
    max-width: 720px;
    margin-bottom: 22px;
    color: var(--text);
    font-size: 1.12rem;
    line-height: 1.8;
}

.about-content > p:not(.lead) {
    max-width: 720px;
    margin-bottom: 15px;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--navy);
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 700;
}

.inline-link span {
    transition: transform var(--transition);
}

.inline-link:hover span {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   7. Services
   --------------------------------------------------------- */

.services {
    background: var(--off-white);
}

.section-heading {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
    margin-bottom: 55px;
}

.section-heading h2 {
    max-width: 680px;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading > div:last-child > p {
    max-width: 570px;
    margin-top: 22px;
}

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

.service-card {
    position: relative;
    min-height: 325px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 105, 170, 0.25);
    box-shadow: var(--shadow-md);
}

.service-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: #bdc9d3;
    font-family: "Manrope", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border-radius: 11px;
    background: var(--blue-light);
}

.service-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 13px;
}

.service-card p {
    max-width: 300px;
    font-size: 0.86rem;
    line-height: 1.7;
}

.service-arrow {
    position: absolute;
    right: 29px;
    bottom: 27px;
    color: var(--blue);
    font-size: 1.3rem;
    opacity: 0;
    transform: translateX(-5px);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-card-dark {
    border-color: var(--navy);
    background: var(--navy);
}

.service-card-dark h3 {
    color: white;
}

.service-card-dark p {
    color: rgba(255, 255, 255, 0.62);
}

.service-card-dark .service-number {
    color: rgba(255, 255, 255, 0.3);
}

.service-card-dark .service-icon {
    background: rgba(255, 255, 255, 0.09);
}

.service-card-dark .service-icon svg {
    stroke: #6bd3ce;
}

.card-link {
    display: inline-flex;
    gap: 10px;
    margin-top: 22px;
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
}

.card-link span {
    transition: transform var(--transition);
}

.card-link:hover span {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   8. Why Us
   --------------------------------------------------------- */

.why-us {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 110px;
}

.why-intro h2 {
    max-width: 470px;
    margin: 32px 0 25px;
}

.why-intro h2 span {
    color: var(--blue);
}

.why-intro > p {
    max-width: 480px;
    font-size: 0.94rem;
}

.benefits {
    display: flex;
    flex-direction: column;
}

.benefit {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.benefit:first-child {
    padding-top: 0;
}

.benefit:last-child {
    border-bottom: 0;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.benefit-icon span {
    color: var(--blue);
    font-family: "Manrope", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
}

.benefit h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.benefit p {
    max-width: 520px;
    font-size: 0.84rem;
}


/* ---------------------------------------------------------
   9. CTA
   --------------------------------------------------------- */

.cta-section {
    padding: 80px 0;
    background: var(--navy);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-label {
    margin-bottom: 15px;
    color: #68cfca;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cta-inner h2 {
    color: white;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.cta-inner h2 span {
    color: #68cfca;
}


/* ---------------------------------------------------------
   10. Contact
   --------------------------------------------------------- */

.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
}

.contact-info h2 {
    max-width: 520px;
    margin: 32px 0 24px;
}

.contact-info h2 span {
    color: var(--blue);
}

.contact-info > p {
    max-width: 520px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 45px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.detail-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--blue-light);
}

.detail-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail > div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-detail span {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 600;
}

.contact-detail a:hover {
    color: var(--blue);
}

.contact-form-wrapper {
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow-sm);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.83rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 0.73rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 7px;
    outline: none;
    background: #fbfcfd;
    color: var(--text);
    font-size: 0.84rem;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-group input,
.form-group select {
    height: 48px;
    padding: 0 14px;
}

.form-group textarea {
    min-height: 125px;
    padding: 13px 14px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aab4;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.08);
}

.form-group.invalid input,
.form-group.invalid textarea,
.form-group.invalid select {
    border-color: #d95757;
}

.error-message {
    display: block;
    min-height: 17px;
    margin-top: 4px;
    color: #c23f3f;
    font-size: 0.68rem;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 5px 0 0;
}

.form-consent input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--blue);
}

.form-consent label {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.5;
}

.consent-error {
    min-height: 18px;
}

.form-submit {
    width: 100%;
    margin-top: 5px;
}

.form-status {
    display: none;
    margin-top: 17px;
    padding: 12px 14px;
    border-radius: 7px;
    font-size: 0.78rem;
}

.form-status.success {
    display: block;
    color: #17634f;
    background: #e9f7f2;
}

.form-status.error {
    display: block;
    color: #9c3434;
    background: #fdeeee;
}


/* ---------------------------------------------------------
   11. Footer
   --------------------------------------------------------- */

.site-footer {
    padding: 70px 0 25px;
    background: #08192b;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand .logo-mark {
    background: white;
    color: var(--navy);
}

.footer-brand .logo-text strong {
    color: white;
}

.footer-brand .logo-text small {
    color: rgba(255, 255, 255, 0.45);
}

.footer-brand > p {
    max-width: 280px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 8px;
    color: white;
    font-size: 0.8rem;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.76rem;
    line-height: 1.7;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.68rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.68rem;
}

.footer-links a:hover {
    color: white;
}


/* ---------------------------------------------------------
   12. Reveal Animation
   --------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

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


/* ---------------------------------------------------------
   13. Responsive — Tablet
   --------------------------------------------------------- */

@media (max-width: 980px) {

    .section {
        padding: 90px 0;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 120px;
    }

    .hero-card {
        display: none;
    }

    .about-grid,
    .section-heading {
        grid-template-columns: 130px 1fr;
        gap: 40px;
    }

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

    .why-grid,
    .contact-grid {
        gap: 55px;
    }

    .footer-main {
        gap: 45px;
    }
}


/* ---------------------------------------------------------
   14. Responsive — Mobile
   --------------------------------------------------------- */

@media (max-width: 720px) {

    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .nav-container {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        right: 17px;
        left: 17px;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: white;
        box-shadow: var(--shadow-md);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav > a {
        padding: 12px 14px;
    }

    .main-nav .nav-cta {
        margin-top: 5px;
        text-align: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        padding-top: 90px;
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .hero-copy > p {
        font-size: 0.95rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .hero-bottom-inner {
        min-height: 58px;
        overflow-x: auto;
        gap: 30px;
        justify-content: flex-start;
        white-space: nowrap;
    }

    .hero-bottom span {
        font-size: 0.59rem;
    }

    .about-grid,
    .section-heading {
        display: block;
    }

    .about-grid > .section-label,
    .section-heading > .section-label {
        margin-bottom: 35px;
    }

    .about-content h2,
    .section-heading h2 {
        font-size: 2.25rem;
    }

    .section-heading > div:last-child > p {
        margin-top: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 295px;
    }

    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        gap: 65px;
    }

    .contact-grid {
        gap: 55px;
    }

    .cta-section {
        padding: 65px 0;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .cta-inner h2 {
        font-size: 2.4rem;
    }

    .contact-form-wrapper {
        padding: 27px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
}


/* ---------------------------------------------------------
   15. Small Mobile
   --------------------------------------------------------- */

@media (max-width: 420px) {

    .logo-text strong {
        font-size: 0.86rem;
    }

    .logo-text small {
        font-size: 0.58rem;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .hero {
        min-height: 670px;
    }

    .hero-content {
        padding-top: 85px;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .btn {
        width: 100%;
    }

    .text-link {
        padding-left: 3px;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}


/* ---------------------------------------------------------
   16. Reduced Motion
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}