/* =========================
   BASE
========================= */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #faf7f5;
    color: #2a2a2a;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, #f2ddd6, transparent 40%),
        radial-gradient(circle at 80% 30%, #e9e2ff, transparent 45%),
        radial-gradient(circle at 50% 80%, #dff1ea, transparent 40%);
    opacity: 0.8;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: 72px;
    letter-spacing: -2px;
    margin: 0;
}

.hero p {
    font-size: 18px;
    opacity: 0.6;
}

/* =========================
   BUTTONS
========================= */

.btn-primary {
    padding: 14px 26px;
    background: #111;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.3s;
}

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

.btn-secondary {
    padding: 14px 26px;
    border: 1px solid #aaa;
    border-radius: 14px;
    text-decoration: none;
}

/* =========================
   3D SHAPES
========================= */

.hero-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 30px;
    filter: blur(0px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 { top: 0; left: 0; }
.shape-2 { top: 80px; left: 60px; animation-delay: 1s; }
.shape-3 { top: 40px; left: 120px; animation-delay: 2s; }

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.section.soft {
    background: #f6f3f1;
}

h2 {
    font-size: 34px;
    margin-bottom: 40px;
}

/* =========================
   GRID
========================= */

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

/* =========================
   FEATURES
========================= */

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

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.feature span {
    font-size: 28px;
}

/* =========================
   CONTACT
========================= */

.contact p {
    font-size: 16px;
    opacity: 0.8;
}

/* =========================
   CTA
========================= */

.cta {
    text-align: center;
    padding: 120px 0;
    background: #111;
    color: #fff;
}

/* =========================
   ANIMATION
========================= */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 44px;
    }

    .grid,
    .grid-products,
    .features {
        grid-template-columns: 1fr;
    }
}