
html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: 'Proxima Nova', Arial, Helvetica, sans-serif;
    color: #333333;
    background: #fff;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ——— NAV ——— */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: #00A486;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #004149;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ——— HERO ——— */
.hero {
    background: #fff;
    padding-top: 72px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #004149, #00A486);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
}

.hero-text .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #00A486;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.hero-text .hero-label svg {
    width: 16px;
    height: 16px;
}

.hero-text h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.12;
    color: #004149;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-text h1 span {
    color: #00A486;
}

.hero-text p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
}

.btn-primary {
    display: inline-block;
    background: #00A486;
    color: #fff;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.btn-primary:hover {
    background: #008a70;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #004149;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.5px;
    border: 2px solid #004149;
    margin-left: 16px;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-secondary:hover {
    background: #004149;
    color: #fff;
}

.hero-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-box {
    border: 1px solid #E7E6E6;
    padding: 28px 20px;
    border-radius: 2px;
    text-align: center;
    background: #fff;
    transition: border-color 0.3s ease;
}

.hero-box:hover {
    border-color: #00A486;
}

.hero-box-value {
    font-size: 28px;
    font-weight: 900;
    color: #00A486;
    margin-bottom: 6px;
    line-height: 1.2;
}

.hero-box-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ——— SECTION GENERAL ——— */
.section-label {
    font-size: 12px;
    font-weight: 700;
    color: #00A486;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #004149;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ——— WHY ROAD.MAP ——— */
.amp-section {
    padding: 100px 32px;
    background: #fff;
}

.amp-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.amp-header {
    text-align: center;
    margin-bottom: 64px;
}

.amp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.amp-card {
    background: #fff;
    border: 1px solid #E7E6E6;
    border-bottom: 4px solid #00A486;
    border-radius: 2px;
    padding: 40px 28px 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 65, 73, 0.07);
}

.amp-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 164, 134, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.amp-icon svg {
    width: 24px;
    height: 24px;
    stroke: #00A486;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.amp-card h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #004149;
    margin-bottom: 14px;
}

.amp-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

/* ——— METHODOLOGY PHASES ——— */
.architecture {
    padding: 100px 32px;
    background: #F2F2F2;
}

.architecture-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.architecture-header {
    text-align: center;
    margin-bottom: 64px;
}

.arch-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 48px 0;
}

.arch-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
}

.arch-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #00A486;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.arch-step-icon svg {
    width: 32px;
    height: 32px;
    stroke: #004149;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.arch-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: #004149;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.arch-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    max-width: 180px;
}

.arch-arrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    margin-bottom: 60px;
}

.arch-arrow svg {
    width: 40px;
    height: 24px;
    stroke: #00A486;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.arch-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.arch-detail-card {
    background: #fff;
    border: 1px solid #E7E6E6;
    border-radius: 2px;
    padding: 32px 28px;
}

.arch-detail-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #004149;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arch-detail-card h4 svg {
    width: 20px;
    height: 20px;
    stroke: #00A486;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.arch-detail-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

/* ——— ASSESSMENT ——— */
.industries {
    padding: 100px 32px;
    background: #fff;
}

.industries-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.industry-card {
    background: #fff;
    border: 1px solid #E7E6E6;
    border-radius: 2px;
    padding: 44px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 65, 73, 0.07);
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 164, 134, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.industry-icon svg {
    width: 28px;
    height: 28px;
    stroke: #00A486;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #004149;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

/* ——— CASE STUDIES ——— */
.cases {
    padding: 100px 32px;
    background: #F2F2F2;
}

.cases-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cases-header {
    text-align: center;
    margin-bottom: 64px;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.case-card {
    background: #fff;
    border: 1px solid #E7E6E6;
    border-radius: 2px;
    padding: 48px 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 65, 73, 0.07);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #00A486;
    border-radius: 2px 0 0 2px;
}

.case-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #00A486;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(0, 164, 134, 0.08);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.case-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #004149;
    margin-bottom: 8px;
}

.case-card .case-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #00A486;
    margin-bottom: 16px;
}

.case-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 24px;
}

.case-stats {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid #E7E6E6;
}

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

.case-stat-value {
    font-size: 24px;
    font-weight: 900;
    color: #004149;
    line-height: 1.2;
}

.case-stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

/* ——— AWS SERVICES ——— */
.aws-services {
    padding: 100px 32px;
    background: #fff;
}

.aws-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.aws-header {
    text-align: center;
    margin-bottom: 64px;
}

.aws-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 153, 0, 0.08);
    border: 1px solid rgba(255, 153, 0, 0.2);
    border-radius: 2px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.aws-badge span {
    font-size: 12px;
    font-weight: 700;
    color: #FF9900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.aws-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.aws-card {
    background: #fff;
    border: 1px solid #E7E6E6;
    border-radius: 2px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aws-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 65, 73, 0.06);
}

.aws-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #004149, #00A486);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.aws-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.aws-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #004149;
    margin-bottom: 8px;
}

.aws-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ——— STATS COUNTERS ——— */
.stats-section {
    padding: 80px 32px;
    background: #F2F2F2;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    color: #004149;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-value .stat-suffix {
    font-size: 32px;
    color: #00A486;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ——— FAQ ——— */
.faq-section {
    padding: 100px 32px;
    background: #fff;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-item {
    border-bottom: 1px solid #E7E6E6;
    padding: 24px 0;
}

.faq-item:first-of-type {
    border-top: 1px solid #E7E6E6;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Proxima Nova', Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #004149;
    padding: 0;
    line-height: 1.5;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #00A486;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
}

/* ——— CTA ——— */
.cta-section {
    padding: 88px 32px;
    background: #fff;
    border-top: 1px solid #E7E6E6;
    border-bottom: 1px solid #E7E6E6;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h2 {
    font-size: 36px;
    font-weight: 700;
    color: #004149;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.cta-inner p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Footer styles are embedded in the footer partial (shared/partials/footer-de.html) */

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 32px 64px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-boxes {
        max-width: 400px;
    }

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

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

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

    .arch-flow {
        flex-direction: column;
        gap: 0;
    }

    .arch-arrow {
        transform: rotate(90deg);
        margin-bottom: 0;
        padding: 8px 0;
    }

    .arch-details {
        grid-template-columns: 1fr;
    }

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


}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid #e8e8e8;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-top: 1px solid #f0f0f0;
    }

    .nav-links a {
        display: block;
        padding: 16px 32px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 12px;
    }

    .hero-boxes {
        grid-template-columns: 1fr 1fr;
    }

    .amp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

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

    .section-title {
        font-size: 28px;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-value {
        font-size: 36px;
    }

    .case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }


    .cta-inner h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-boxes {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr;
    }

    .arch-flow {
        padding: 24px 0;
    }
}

/* Warum Storm Reply */
.why-storm{background:#fff;padding:110px 0}
.why-storm-grid{display:grid;grid-template-columns:240px 1fr;gap:64px;align-items:center}
.why-storm-badge{display:flex;justify-content:center;align-items:center}
.why-storm-badge img{width:200px;height:200px;object-fit:contain;filter:drop-shadow(0 8px 24px rgba(0,65,73,.1))}
.why-storm-content .section-label{margin-bottom:14px}
.why-storm-content h2{font-size:clamp(1.7rem,3vw,2.4rem);margin-bottom:6px;letter-spacing:-.5px;font-weight:800}
.why-storm-content p{font-size:1.02rem;color:#666;line-height:1.8;margin-bottom:16px}
.why-storm-facts{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:28px}
.why-storm-fact{padding:18px 20px;border-radius:8px;background:#F2F2F2;border:1px solid #E7E6E6;transition:all .3s ease}
.why-storm-fact:hover{border-color:rgba(0,164,134,.2);box-shadow:0 4px 16px rgba(0,0,0,.06)}
.why-storm-fact strong{display:block;font-size:.95rem;font-weight:700;color:#004149;margin-bottom:2px}
.why-storm-fact span{font-size:.82rem;color:#888}
@media(max-width:768px){
  .why-storm-grid{grid-template-columns:1fr;gap:32px;text-align:center}
  .why-storm-badge img{width:160px;height:160px}
  .why-storm-facts{grid-template-columns:1fr}
  .why-storm .teal-line{margin:16px auto 24px}
}

