:root {
    --green: #4b8b62;
    --pink: #f4b8c8;
    --white: #ffffff;
    --beige: #f5e6d3;
    --red: #b7414d;
    --black: #171717;
    --violet: #7c5aa6;
    --gray: #ececec;
    --yellow: #f4ca64;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--black);
    background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1150px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-alt { padding: 72px 0; background: linear-gradient(135deg, rgba(75,139,98,.08), rgba(244,184,200,.14), rgba(124,90,166,.08)); }
.section-head { margin-bottom: 28px; }
.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(75,139,98,.1);
    color: var(--green);
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 12px;
}

.hero {
    min-height: 100vh;
    background:
      radial-gradient(circle at top left, rgba(244,184,200,.38), transparent 30%),
      radial-gradient(circle at top right, rgba(244,202,100,.2), transparent 30%),
      linear-gradient(135deg, rgba(75,139,98,.08), rgba(255,255,255,1) 40%, rgba(245,230,211,.7));
    padding-bottom: 42px;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}
.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--green);
}
.nav-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.nav-links a {
    font-weight: 700;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 32px;
    align-items: center;
    min-height: calc(100vh - 92px);
}
.hero h1 {
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1.02;
    margin: 0 0 16px;
}
.hero p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 640px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.btn {
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.btn.primary { background: var(--green); color: var(--white); }
.btn.secondary { background: var(--white); color: var(--black); }
.full-btn { width: 100%; }

.hero-card, .stats-card, .product-card, .order-form {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,.05);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero-card {
    padding: 28px;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}
.hero-card p { position: absolute; left: 28px; right: 28px; bottom: 18px; font-size: 15px; }
.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}
.c1 { width: 220px; height: 220px; background: rgba(244,184,200,.5); top: 20px; right: -20px; }
.c2 { width: 180px; height: 180px; background: rgba(124,90,166,.25); bottom: 80px; left: -40px; }
.hero-bouquet {
    position: absolute;
    left: 50%; top: 46%; transform: translate(-50%, -50%);
    width: 220px; height: 240px;
}
.petal {
    position: absolute;
    width: 86px; height: 86px;
    border-radius: 50%;
    box-shadow: inset 0 -10px 18px rgba(0,0,0,.08);
}
.petal-1 { background: var(--pink); left: 20px; top: 30px; }
.petal-2 { background: var(--red); right: 18px; top: 28px; }
.petal-3 { background: var(--violet); left: 38px; top: 88px; }
.petal-4 { background: var(--yellow); right: 36px; top: 92px; }
.center-dot {
    position: absolute;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--beige); left: 50%; top: 92px; transform: translateX(-50%);
}
.stem {
    position: absolute;
    width: 10px; height: 110px; border-radius: 999px;
    background: linear-gradient(180deg, var(--green), #2f5f41);
    left: 50%; bottom: 16px; transform: translateX(-50%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.product-art {
    height: 180px;
    background:
      radial-gradient(circle at 25% 35%, rgba(244,184,200,.95), transparent 18%),
      radial-gradient(circle at 70% 30%, rgba(124,90,166,.78), transparent 18%),
      radial-gradient(circle at 58% 58%, rgba(75,139,98,.85), transparent 20%),
      radial-gradient(circle at 35% 72%, rgba(244,202,100,.9), transparent 16%),
      linear-gradient(135deg, #fef7fb, #f8f6ef, #f5f8f2);
    position: relative;
}
.badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 8px 12px;
    background: var(--black); color: var(--white);
    border-radius: 999px;
    font-size: 12px; font-weight: 700;
}
.product-body { padding: 22px; }
.product-body h3 { margin: 4px 0 10px; font-size: 23px; }
.category { color: var(--green); font-weight: 700; margin: 0; }
.product-footer {
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
    margin-top: 16px;
}
.mini-btn {
    background: var(--pink);
    color: var(--black);
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
}
.two-col {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 26px;
    align-items: center;
}
.features {
    padding-left: 18px;
    line-height: 1.9;
}
.stats-card {
    padding: 28px;
    display: grid;
    gap: 18px;
}
.stats-card strong {
    font-size: 34px;
    display: block;
    color: var(--violet);
}
.order-form {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group.full { grid-column: 1 / -1; }
label { font-weight: 700; }
input, select, textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 16px;
    background: #fff;
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid rgba(75,139,98,.25);
    border-color: var(--green);
}
.alert {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 700;
}
.alert.success { background: rgba(75,139,98,.12); color: #245133; }
.alert.error { background: rgba(183,65,77,.12); color: #8d2430; }
.footer {
    background: var(--black);
    color: rgba(255,255,255,.9);
    padding: 42px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 920px) {
    .hero-content, .products-grid, .two-col, .footer-grid, .order-form {
        grid-template-columns: 1fr;
    }
    .hero { min-height: auto; }
    .hero-content { padding: 24px 0 32px; }
    .nav { flex-direction: column; gap: 16px; }
}
