.hero-section {
    padding: 5.2rem 0 3.4rem;
}

.hero-content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.4rem;
    align-items: stretch;
}

.hero-text {
    background: linear-gradient(145deg, #1c2a56, #334aa3 54%, #4f46e5);
    border-radius: var(--radius-lg);
    padding: 2.1rem;
    color: #eef2ff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-text::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 219, 254, 0.42), transparent 70%);
}

.hero-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero-title span {
    color: #bfdbfe;
}

.hero-description {
    color: rgba(238, 242, 255, 0.9);
    font-size: 1.05rem;
    max-width: 44ch;
}

.hero-gradient {
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 22% 20%, rgba(20, 184, 166, 0.92), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.88), transparent 38%),
        linear-gradient(145deg, #4f46e5, #2563eb);
    min-height: 280px;
    box-shadow: var(--shadow);
}

.content-section {
    padding: 2.2rem 0;
}

.aloe-section,
.carrot-section,
.salmon-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(237, 243, 255, 0.62));
}

.egg-section,
.spinach-section,
.product-section {
    background: linear-gradient(180deg, rgba(246, 249, 255, 0.5), rgba(255, 255, 255, 0.65));
}

.section-header {
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.02em;
    color: #1c2952;
}

.section-subtitle,
.section-text {
    color: var(--ink-soft);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image-wrapper {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.content-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 44px rgba(29, 42, 73, 0.16);
}

.content-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.12);
    pointer-events: none;
}

.content-image-wrapper.full-width {
    margin-top: 1.1rem;
}

.content-image {
    width: 100%;
    display: block;
}

.image-bg {
    height: 380px;
    background-size: cover;
    background-position: center;
}

.product-section .image-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #ffffff;
    background-position: center;
}

.content-cards,
.content-cards-grid {
    display: grid;
    gap: 1rem;
}

.content-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, border-color 0.2s ease;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(91, 71, 255, 0.26);
}

.card-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
    color: #253468;
}

.card-text {
    color: var(--ink-soft);
}

.divider {
    margin: 1.1rem 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.contact-form-section {
    margin: 2rem 0 0;
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(237, 243, 255, 0.45), rgba(255, 255, 255, 0.8));
}

.form-title {
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.form-subtitle {
    text-align: center;
    color: var(--ink-soft);
    max-width: 62ch;
    margin: 0.8rem auto 1.6rem;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.form-group {
    margin-bottom: 0.9rem;
}

.form-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 0.8rem 0.9rem;
    font: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: 2px solid rgba(91, 71, 255, 0.4);
    border-color: rgba(91, 71, 255, 0.6);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 1.1rem;
}

.submit-btn {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, #4f46e5, #0ea5e9);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.3);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.form-control-hidden {
    display: none;
}

.disclaimer {
    max-width: 880px;
    margin: 1.5rem auto 0;
    background: #eef2ff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.05rem;
}

.disclaimer-title {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.disclaimer-text {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .hero-content,
    .content-grid,
    .content-cards-grid {
        grid-template-columns: 1fr;
    }

    .content-grid.reverse {
        direction: ltr;
    }
}
