:root {
    --sky: #7ec8e3;
    --sky-light: #b8dff0;
    --sky-pale: #e8f5fb;
    --sky-deep: #4aa8cc;
    --ink: #1a2530;
    --ink-soft: #3a4a58;
    --mist: #f0f8fc;
    --white: #ffffff;
    --gold: #c9a96e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 4rem;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(126,200,227,0.15);
}

.nav-logo {
    display: flex; align-items: center; gap: 0.7rem;
    text-decoration: none;
}

.nav-logo img { height: 36px; }

.nav-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sky-deep);
    letter-spacing: 0.02em;
}
.logo-text { font-family: "DM Sans", sans-serif }

.nav-links {
    display: flex; gap: 2.5rem; list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--sky-deep); }

.nav-cta {
    background: var(--sky);
    color: var(--white) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--sky-deep) !important; color: var(--white) !important; }

.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--white) 0%, var(--mist) 50%, var(--sky-pale) 100%);
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126,200,227,0.18) 0%, transparent 70%);
}

.hero-bg-circle.c1 { width: 700px; height: 700px; top: -200px; right: -200px; }
.hero-bg-circle.c2 { width: 500px; height: 500px; bottom: -150px; left: -100px; }

.hero-inner {
    text-align: center;
    max-width: 820px;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(126,200,227,0.12);
    border: 1px solid rgba(126,200,227,0.35);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky-deep);
    margin-bottom: 2rem;
    animation: fadeUp 1s 0.1s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sky);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-logo {
    width: 200px;
    margin: 0 auto;
    animation: fadeUp 1s 0.15s ease both;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 1.6rem;
    animation: fadeUp 1s 0.2s ease both;
}

h1 em {
    font-style: italic;
    color: var(--sky-deep);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.8rem;
    animation: fadeUp 1s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.4s ease both;
}

.btn-primary {
    background: var(--sky-deep);
    color: var(--white);
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(74,168,204,0.35);
}

.btn-primary:hover {
    background: var(--sky);
    box-shadow: 0 6px 28px rgba(74,168,204,0.45);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid rgba(0,0,0,0.12);
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-ghost:hover {
    border-color: var(--sky);
    color: var(--sky-deep);
}

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
}

/* ── SECTION SHARED ── */
section { padding: 7rem 2rem; }

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sky-deep);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--sky-deep); }

/* ── PRODUCTS ── */
.products {
    background: var(--mist);
    text-align: center;
}

.products-header { margin-bottom: 4rem; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 0.5px solid rgba(126,200,227,0.2);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(126,200,227,0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-light), var(--sky-deep));
}

.product-card.plus::before {
    background: linear-gradient(90deg, var(--sky-deep), var(--gold));
}

.product-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.product-logo-wrap { flex-shrink: 0; }
.product-logo-wrap img { height: 48px; }

.product-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 500;
}

.badge-free { background: rgba(126,200,227,0.15); color: var(--sky-deep); border: 0.5px solid rgba(126,200,227,0.35); }
.badge-plus { background: rgba(201,169,110,0.15); color: var(--gold); border: 0.5px solid rgba(201,169,110,0.35); }
.badge-shopware { background: rgba(24,95,165,0.08); color: #185FA5; border: 0.5px solid rgba(24,95,165,0.25); }

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.6rem;
}

.product-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin: 0 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.product-features li {
    font-size: 0.83rem;
    color: var(--ink-soft);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.product-features li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--sky);
    flex-shrink: 0;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
}

.product-price span {
    font-size: 0.9rem;
    color: var(--ink-soft);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
}
/*.product-card {*/
/*  background: var(--white);*/
/*  border-radius: 20px;*/
/*  padding: 3rem 2.5rem;*/
/*  border: 1px solid rgba(126,200,227,0.2);*/
/*  text-align: left;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  transition: transform 0.3s, box-shadow 0.3s;*/
/*}*/

/*.product-card:hover {*/
/*  transform: translateY(-5px);*/
/*  box-shadow: 0 20px 60px rgba(126,200,227,0.2);*/
/*}*/

/*.product-card::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0; left: 0; right: 0;*/
/*  height: 3px;*/
/*  background: linear-gradient(90deg, var(--sky-light), var(--sky-deep));*/
/*}*/

/*.product-card.plus::before {*/
/*  background: linear-gradient(90deg, var(--sky-deep), var(--gold));*/
/*}*/

/*.product-logo-wrap {*/
/*  margin-bottom: 1.8rem;*/
/*}*/

/*.product-logo-wrap img { height: 48px; }*/

/*.product-badge, .product-badge-platform {*/
/*  display: inline-block;*/
/*  font-size: 0.68rem;*/
/*  letter-spacing: 0.1em;*/
/*  text-transform: uppercase;*/
/*  padding: 0.25rem 0.75rem;*/
/*  border-radius: 50px;*/
/*  font-weight: 500;*/
/*  margin-bottom: 1.2rem;*/
/*}*/
/*.product-badge-platform {*/
/*  font-family: 'Cormorant Garamond', serif;*/
/*  font-family: 'DM Sans', sans-serif;*/
/*  font-size: 0.68rem;*/
/*  background: rgba(126,200,227,0.15);*/
/*  color: var(--ink-soft);*/
/*}*/

/*.badge-free { background: rgba(126,200,227,0.15); color: var(--sky-deep); }*/
/*.badge-plus { background: rgba(201,169,110,0.15); color: var(--gold); }*/

/*.product-name {*/
/*  font-family: 'Cormorant Garamond', serif;*/
/*  font-size: 1.9rem;*/
/*  font-weight: 400;*/
/*  color: var(--ink);*/
/*  margin-bottom: 0.8rem;*/
/*}*/

/*.product-desc {*/
/*  font-size: 0.9rem;*/
/*  font-weight: 300;*/
/*  color: var(--ink-soft);*/
/*  line-height: 1.7;*/
/*  margin-bottom: 2rem;*/
/*}*/

/*.product-features {*/
/*  list-style: none;*/
/*  margin-bottom: 2.2rem;*/
/*}*/

/*.product-features li {*/
/*  font-size: 0.85rem;*/
/*  color: var(--ink-soft);*/
/*  padding: 0.45rem 0;*/
/*  border-bottom: 1px solid rgba(0,0,0,0.05);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 0.6rem;*/
/*}*/

/*.product-features li::before {*/
/*  content: '';*/
/*  width: 5px; height: 5px;*/
/*  border-radius: 50%;*/
/*  background: var(--sky);*/
/*  flex-shrink: 0;*/
/*}*/

/*.product-price {*/
/*  font-family: 'Cormorant Garamond', serif;*/
/*  font-size: 2.2rem;*/
/*  font-weight: 300;*/
/*  color: var(--ink);*/
/*  margin-bottom: 1.4rem;*/
/*}*/

/*.product-price span {*/
/*  font-size: 1rem;*/
/*  color: var(--ink-soft);*/
/*  font-family: 'DM Sans', sans-serif;*/
/*  font-weight: 300;*/
/*}*/

/* ── FEATURES ── */
.features { background: var(--white); }

.features-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.features-list { list-style: none; margin-top: 2.5rem; }

.features-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feat-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--sky-pale);
    border: 1px solid rgba(126,200,227,0.3);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.feat-text strong {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.feat-text p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.6;
}

.features-visual {
    position: relative;
}

.mockup-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(126,200,227,0.25);
    box-shadow: 0 20px 70px rgba(126,200,227,0.2);
    padding: 2rem;
    position: relative;
}

.mockup-bar {
    display: flex; gap: 0.4rem; margin-bottom: 1.5rem;
}

.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ffb3b3; }
.mockup-dot:nth-child(2) { background: #ffe0a0; }
.mockup-dot:nth-child(3) { background: #a8e6c1; }

.mockup-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sky-deep);
    margin-bottom: 0.7rem;
    font-weight: 500;
}

.mockup-text-area {
    background: var(--mist);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.6;
    min-height: 80px;
    border: 1px solid rgba(126,200,227,0.2);
}

.mockup-generating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: var(--sky-deep);
    margin-bottom: 1rem;
}

.dot-anim {
    display: flex; gap: 3px;
}

.dot-anim span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--sky);
    animation: bounce 1.2s infinite;
}

.dot-anim span:nth-child(2) { animation-delay: 0.2s; }
.dot-anim span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
}

.mockup-result {
    background: rgba(126,200,227,0.08);
    border: 1px solid rgba(126,200,227,0.25);
    border-radius: 10px;
    padding: 1.2rem;
    font-size: 0.82rem;
    color: var(--ink);
    line-height: 1.7;
}

.float-badge {
    position: absolute;
    right: -1.5rem;
    top: 2rem;
    background: var(--sky-deep);
    color: var(--white);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(74,168,204,0.4);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.shopware {
    background: linear-gradient(135deg, var(--sky-pale) 0%, var(--mist) 100%);
    text-align: center;
    padding: 6rem 2rem;
}

.shopware-inner { max-width: 640px; margin: 0 auto; }

.shopware-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 1px solid rgba(126,200,227,0.3);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.sw-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sky);
}

/* ── CTA ── */
.cta {
    background: var(--ink);
    text-align: center;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126,200,227,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.cta h2 em { font-style: italic; color: var(--sky-light); }

.cta p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex; align-items: center; gap: 0.5rem;
}

.footer-logo img { height: 28px; opacity: 0.8; }

.footer-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}

footer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.nav-social-link {
    display: grid;
    place-items: center;
    width: 32px; height: 32px;
    border-radius: 8px;
    color: var(--ink-soft);
    border: 1px solid rgba(0,0,0,0.08);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.nav-social-link:hover {
    color: var(--sky-deep);
    border-color: rgba(126,200,227,0.4);
    background: rgba(126,200,227,0.06);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-link {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 8px;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.footer-social-link:hover {
    color: var(--sky-light);
    border-color: rgba(126,200,227,0.35);
    background: rgba(126,200,227,0.08);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    .features-inner { grid-template-columns: 1fr; gap: 3rem; }
    .float-badge { display: none; }
    footer { flex-direction: column; text-align: center; padding: 2rem; }
}