/* ============================================================
   AGA-MEDIA — Hauptstylesheet
   Design angelehnt an www.stickbu.de (Schwester-Marke)
   Palette: Stickbu-Orange #ED6B23 + Anthrazit #2C3E50 + Navy
   Basis: Bootstrap 5.3.2 + FontAwesome 6.5.2 · Mobile-First
   ============================================================ */

:root {
    /* Marken-Farben (angelehnt an Stickbu) */
    --aga-orange: #ED6B23;
    --aga-orange-dark: #D45A1B;
    --aga-orange-light: #F9B888;
    --aga-dark: #2C3E50;
    --aga-navy: #0D2736;
    --aga-navy-dark: #071823;
    --aga-bg: #F8F9FA;
    --aga-cream: #FDF6F0;

    /* Text */
    --text-dark: #1E2A38;
    --text-body: #3A4654;
    --text-muted: #7B8A99;

    /* Bootstrap-Overrides */
    --bs-primary: var(--aga-orange);
    --bs-primary-rgb: 237, 107, 35;
    --bs-body-font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

* { -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--bs-body-font-family);
    color: var(--text-body);
    line-height: 1.65;
    background: #fff;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}
a { color: var(--aga-orange); text-decoration: none; }
a:hover { color: var(--aga-orange-dark); }

/* ------------------------------------------------------------
   TOPBAR
   ------------------------------------------------------------ */
.topbar {
    background: var(--aga-navy-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 0.45rem 0;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s ease; }
.topbar a:hover { color: var(--aga-orange); }
.topbar .sep { opacity: 0.3; margin: 0 0.6rem; }
.topbar .social a {
    display: inline-flex;
    width: 26px; height: 26px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    font-size: 0.75rem;
    margin-left: 6px;
}
.topbar .social a:hover { background: var(--aga-orange); color: white; }
.topbar .wa { color: #25D366 !important; }

/* ------------------------------------------------------------
   NAVBAR / HEADER
   ------------------------------------------------------------ */
.navbar.aga-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 0.7rem 0;
}
.aga-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.aga-nav .brand-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--aga-orange) 0%, var(--aga-orange-dark) 100%);
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(237,107,35,0.3);
}
.aga-nav .brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--aga-dark);
    line-height: 1;
}
.aga-nav .brand-text small {
    display: block;
    font-size: 0.64rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1.6px;
    margin-top: 3px;
    text-transform: uppercase;
}
.aga-nav .nav-link {
    color: var(--aga-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.9rem !important;
    transition: color 0.2s ease;
}
.aga-nav .nav-link:hover, .aga-nav .nav-link.active { color: var(--aga-orange); }
.btn-aga {
    background: var(--aga-orange);
    border: none;
    color: white !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    box-shadow: 0 4px 15px rgba(237,107,35,0.3);
    transition: all 0.25s ease;
}
.btn-aga:hover {
    background: var(--aga-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237,107,35,0.4);
}
.btn-aga-outline {
    background: transparent;
    border: 2px solid var(--aga-orange);
    color: var(--aga-orange) !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.55rem 1.4rem;
    transition: all 0.25s ease;
}
.btn-aga-outline:hover { background: var(--aga-orange); color: white !important; }
.btn-aga-light {
    background: white;
    border: none;
    color: var(--aga-navy) !important;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    transition: all 0.25s ease;
}
.btn-aga-light:hover { background: var(--aga-cream); transform: translateY(-2px); }

/* ------------------------------------------------------------
   BANNER / HERO
   ------------------------------------------------------------ */
.aga-hero {
    position: relative;
    background: linear-gradient(135deg, var(--aga-navy) 0%, var(--aga-navy-dark) 100%);
    color: white;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
}
.aga-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(237,107,35,0.18) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(237,107,35,0.1) 0%, transparent 45%);
    pointer-events: none;
}
.aga-hero > .container { position: relative; z-index: 2; }
.aga-hero .hero-badge {
    display: inline-block;
    background: rgba(237,107,35,0.15);
    border: 1px solid rgba(237,107,35,0.4);
    color: var(--aga-orange-light);
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.aga-hero h1 {
    color: white;
    font-size: clamp(1.9rem, 5vw, 3.3rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}
.aga-hero h1 .accent { color: var(--aga-orange); }
.aga-hero .lead {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 640px;
    margin-bottom: 1.75rem;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-trust .item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.hero-trust .item i { color: var(--aga-orange); }

/* Hero-Kachelstapel rechts (Desktop) */
.hero-tiles { position: relative; }
.hero-tile {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    margin-bottom: 0.9rem;
    transition: all 0.25s ease;
}
.hero-tile:hover { background: rgba(255,255,255,0.11); transform: translateX(6px); color: white; }
.hero-tile i {
    width: 44px; height: 44px;
    border-radius: 11px;
    background: var(--aga-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.hero-tile strong { display: block; font-size: 0.98rem; }
.hero-tile span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ------------------------------------------------------------
   SEKTIONEN
   ------------------------------------------------------------ */
section { padding: 4.5rem 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .eyebrow {
    display: inline-block;
    color: var(--aga-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
}
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.9rem; }
.section-head .sub { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 1.02rem; }
.bg-soft { background: var(--aga-bg); }
.bg-navy-sec { background: var(--aga-navy); color: white; }
.bg-navy-sec h2, .bg-navy-sec h3 { color: white; }
.bg-navy-sec .section-head .sub { color: rgba(255,255,255,0.75); }

/* ------------------------------------------------------------
   LEISTUNGS-KARTEN (Grafik-Dienstleistungen)
   ------------------------------------------------------------ */
.service-card {
    background: white;
    border: 1px solid #E9ECEF;
    border-radius: 16px;
    padding: 1.9rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-7px);
    border-color: var(--aga-orange);
    box-shadow: 0 15px 35px rgba(44,62,80,0.1);
}
.service-card .icon {
    width: 62px; height: 62px;
    background: linear-gradient(135deg, var(--aga-orange) 0%, var(--aga-orange-dark) 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 6px 18px rgba(237,107,35,0.3);
}
.service-card h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.service-card .ab-preis {
    display: inline-block;
    background: var(--aga-cream);
    color: var(--aga-orange-dark);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.25rem 0.9rem;
    border-radius: 20px;
}

/* ------------------------------------------------------------
   PRODUKT-KARTEN (Druck + Merchandise)
   ------------------------------------------------------------ */
.produkt-tile {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E9ECEF;
    height: 100%;
    transition: all 0.3s ease;
}
.produkt-tile:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(44,62,80,0.12); border-color: var(--aga-orange); }
.produkt-tile .bild {
    aspect-ratio: 4/3;
    background: var(--aga-bg);
    position: relative;
    overflow: hidden;
}
.produkt-tile .bild img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.produkt-tile:hover .bild img { transform: scale(1.06); }
.produkt-tile .bild .icon-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--aga-orange);
    background: linear-gradient(135deg, var(--aga-cream) 0%, #FBE8DA 100%);
}
/* Liegt ein Produktfoto in der Kachel, versteckt sich das Icon-Feld.
   Lädt das Foto nicht (onerror entfernt es), erscheint das Icon wieder. */
.produkt-tile .bild img + .icon-fallback { display: none; }
.produkt-tile .body { padding: 1.1rem 1.2rem 1.3rem; }
.produkt-tile h5 { font-size: 1rem; margin-bottom: 0.3rem; }
.produkt-tile p { color: var(--text-muted); font-size: 0.83rem; margin-bottom: 0.5rem; }
.produkt-tile .ab { font-weight: 700; color: var(--aga-orange-dark); font-size: 0.88rem; }

/* ------------------------------------------------------------
   RUBRIK-TEASER (Landingpages + Logo-Shop)
   ------------------------------------------------------------ */
.rubrik-teaser {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    padding: 2.2rem 2rem;
    background: linear-gradient(135deg, var(--aga-navy) 0%, var(--aga-navy-dark) 100%);
    transition: all 0.3s ease;
}
.rubrik-teaser:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(7,24,35,0.35); color: white; }
.rubrik-teaser::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rt-img, none) center/cover no-repeat;
    opacity: 0.35;
    transition: opacity 0.3s ease, transform 0.4s ease;
}
.rubrik-teaser:hover::before { opacity: 0.45; transform: scale(1.04); }
.rubrik-teaser::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,24,35,0.92) 20%, rgba(7,24,35,0.25) 70%);
}
.rubrik-teaser > * { position: relative; z-index: 2; }
.rubrik-teaser .rt-badge {
    align-self: flex-start;
    background: var(--aga-orange);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.rubrik-teaser h3 { color: white; font-size: 1.55rem; margin-bottom: 0.5rem; }
.rubrik-teaser p { color: rgba(255,255,255,0.82); font-size: 0.95rem; margin-bottom: 1.1rem; }
.rubrik-teaser .rt-cta { font-weight: 700; color: var(--aga-orange-light); }
.rubrik-teaser .rt-cta i { transition: transform 0.25s ease; margin-left: 6px; }
.rubrik-teaser:hover .rt-cta i { transform: translateX(6px); }

/* ------------------------------------------------------------
   USP-STRIP
   ------------------------------------------------------------ */
.usp-item { display: flex; gap: 1rem; align-items: flex-start; }
.usp-item i {
    width: 46px; height: 46px;
    background: rgba(237,107,35,0.12);
    color: var(--aga-orange);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.usp-item strong { color: var(--text-dark); display: block; margin-bottom: 2px; }
.usp-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.bg-navy-sec .usp-item strong { color: white; }
.bg-navy-sec .usp-item p { color: rgba(255,255,255,0.7); }
.bg-navy-sec .usp-item i { background: rgba(237,107,35,0.2); }

/* ------------------------------------------------------------
   LOGO-SHOP
   ------------------------------------------------------------ */
.logo-card {
    background: white;
    border-radius: 18px;
    border: 1px solid #E9ECEF;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.logo-card:hover { transform: translateY(-7px); box-shadow: 0 18px 42px rgba(44,62,80,0.13); border-color: var(--aga-orange); }
.logo-card .logo-stage {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, #FAFBFC 25%, transparent 25%) -10px 0/20px 20px,
        linear-gradient(225deg, #FAFBFC 25%, transparent 25%) -10px 0/20px 20px,
        linear-gradient(315deg, #FAFBFC 25%, transparent 25%) 0 0/20px 20px,
        linear-gradient(45deg, #FAFBFC 25%, #F1F3F5 25%) 0 0/20px 20px;
    padding: 1.8rem;
}
.logo-card .logo-stage svg { max-width: 200px; max-height: 150px; width: 100%; }
.logo-card .body { padding: 1.2rem 1.4rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.logo-card .branche { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); font-weight: 600; }
.logo-card h4 { font-size: 1.15rem; margin: 0.25rem 0 0.5rem; }
.logo-card .features { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 0.9rem; }
.logo-card .preis-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.logo-card .festpreis { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--aga-dark); }
.logo-card .festpreis small { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
.logo-status {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    background: #E8F9EF;
    color: #15803D;
    letter-spacing: 0.5px;
}
.logo-status.verkauft { background: #FDECEA; color: #C0392B; }

/* Mockup-Ansichten im Modal */
.mockup-tabs .nav-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.4rem 1.1rem;
}
.mockup-tabs .nav-link.active { background: var(--aga-orange); color: white; }
.mockup-stage {
    background: var(--aga-bg);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.mockup-stage svg { max-width: 100%; height: auto; max-height: 320px; }
.logo-vorteil { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; margin-bottom: 0.7rem; }
.logo-vorteil i { color: #22C55E; margin-top: 3px; }

/* ------------------------------------------------------------
   ABLAUF-STEPS
   ------------------------------------------------------------ */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 1.9rem 1.4rem 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    border: 1px solid #E9ECEF;
}
.step-card .num {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 40px;
    background: var(--aga-orange);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(237,107,35,0.35);
}
.step-card h5 { margin: 0.6rem 0 0.5rem; font-size: 1.02rem; }
.step-card p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* ------------------------------------------------------------
   KONTAKT + CTA-BAND
   ------------------------------------------------------------ */
.cta-band {
    background: linear-gradient(135deg, var(--aga-orange) 0%, var(--aga-orange-dark) 100%);
    color: white;
    border-radius: 22px;
    padding: 2.8rem 2.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -60%; right: -10%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
}
.cta-band h2 { color: white; margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 1.5rem; }
.kontakt-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.3rem; }
.kontakt-item i {
    width: 46px; height: 46px;
    background: var(--aga-cream);
    color: var(--aga-orange);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.kontakt-item strong { color: var(--text-dark); display: block; }
.kontakt-item a, .kontakt-item span { color: var(--text-body); font-size: 0.94rem; }
.aga-form {
    background: white;
    border-radius: 18px;
    padding: 2rem 1.8rem;
    box-shadow: 0 12px 35px rgba(44,62,80,0.1);
}
.aga-form label { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 5px; }
.aga-form .form-control, .aga-form .form-select {
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    font-size: 0.94rem;
    border-color: #DDE2E8;
}
.aga-form .form-control:focus, .aga-form .form-select:focus {
    border-color: var(--aga-orange);
    box-shadow: 0 0 0 3px rgba(237,107,35,0.12);
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.aga-footer {
    background: var(--aga-navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 3.2rem 0 1.8rem;
    font-size: 0.9rem;
}
.aga-footer h6 { color: white; margin-bottom: 1rem; font-size: 0.98rem; }
.aga-footer a { color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.aga-footer a:hover { color: var(--aga-orange); }
.aga-footer .brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--aga-orange);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}
.aga-footer ul { list-style: none; padding: 0; margin: 0; }
.aga-footer ul li { padding: 0.28rem 0; }
.aga-footer hr { border-color: rgba(255,255,255,0.1); margin: 1.6rem 0 1.2rem; }

/* Sticky Kontakt-Buttons */
.sticky-contacts {
    position: fixed;
    right: 16px; bottom: 16px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sticky-contacts a {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
    transition: transform 0.25s ease;
}
.sticky-contacts a:hover { transform: scale(1.08); color: white; }
.sticky-contacts .whatsapp { background: #25D366; }
.sticky-contacts .call { background: var(--aga-orange); }

/* ------------------------------------------------------------
   MOBILE-FIRST FINE-TUNING
   ------------------------------------------------------------ */
@media (max-width: 991px) {
    .hero-tiles { margin-top: 2.2rem; }
}
@media (max-width: 768px) {
    section { padding: 3.2rem 0; }
    .aga-hero { padding: 3.2rem 0 3.6rem; }
    .topbar .d-mob-none { display: none; }
    .rubrik-teaser { min-height: 300px; padding: 1.7rem 1.4rem; }
    .sticky-contacts a { width: 50px; height: 50px; font-size: 1.15rem; }
    .cta-band { padding: 2.1rem 1.4rem; }
}
