/* Focura — landing page: Verdant Focus */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ——— Hero ——— */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-md);
    padding-bottom: calc(var(--spacing-xl) + 2rem);
    margin-top: 66px;
    overflow: hidden;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 55% at 90% 10%, rgba(217, 119, 6, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 8% 80%, rgba(13, 92, 99, 0.14) 0%, transparent 52%),
        linear-gradient(160deg, #0d5c63 0%, #09464c 40%, #073540 100%);
    box-shadow: 0 20px 72px rgba(26, 31, 46, 0.35);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: clamp(260px, 42vw, 500px);
    height: clamp(260px, 42vw, 500px);
    right: -6%;
    top: 48%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(251, 191, 36, 0.14) 0%, transparent 65%);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    pointer-events: none;
    animation: floatBlob 14s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 7vw, 4.4rem);
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: var(--spacing-md);
    color: #faf7f2;
    letter-spacing: -0.04em;
}

.hero-title span {
    display: inline;
    background: linear-gradient(105deg, #fcd34d 0%, #fbbf24 45%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(251, 191, 36, 0.35));
}

.hero-description {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: rgba(250, 247, 242, 0.84);
    line-height: 1.78;
    max-width: 520px;
    font-weight: 400;
    border-left: 3px solid rgba(251, 191, 36, 0.7);
    padding-left: 1.2rem;
}

.hero-gradient {
    position: absolute;
    top: -15%;
    right: -4%;
    width: min(440px, 60vw);
    height: min(440px, 60vw);
    background: radial-gradient(circle, rgba(217, 119, 6, 0.22) 0%, transparent 68%);
    filter: blur(6px);
    pointer-events: none;
    z-index: 1;
    animation: pulseSoft 7s ease-in-out infinite;
}

/* ——— Content bands ——— */
.content-section {
    position: relative;
    padding: calc(var(--spacing-xl) + 0.5rem) var(--spacing-md);
    z-index: 1;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-left: 1.3rem;
}

.section-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 4px;
    height: 2em;
    background: linear-gradient(180deg, var(--color-accent-amber), var(--color-accent-primary));
    border-radius: 4px;
    transform: skewY(-3deg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-ink);
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-secondary);
    line-height: 1.82;
    max-width: 880px;
    font-weight: 400;
}

.section-text {
    font-size: clamp(0.98rem, 1.5vw, 1.06rem);
    color: var(--color-text-secondary);
    line-height: 1.95;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-lg);
}

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

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

.content-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl) var(--radius-sm) var(--radius-xl) var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 6px 6px 0 rgba(13, 92, 99, 0.14);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: var(--transition-base);
    background: var(--color-bg-elevated);
}

.content-image-wrapper:hover {
    transform: translateY(-7px) rotate(-0.4deg);
    box-shadow: 0 28px 60px rgba(26, 31, 46, 0.14), 10px 10px 0 rgba(217, 119, 6, 0.16);
}

.content-image-wrapper.full-width {
    grid-column: 1 / -1;
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-md) var(--radius-xl) var(--radius-md) var(--radius-xl);
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

.image-bg {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: inherit;
    position: relative;
}

.image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(13, 92, 99, 0.1) 0%, transparent 50%, rgba(217, 119, 6, 0.06) 100%);
    border-radius: inherit;
    pointer-events: none;
}

.content-text-wrapper {
    padding: var(--spacing-md);
}

.content-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.content-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* ——— Info cards ——— */
.info-card {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent-amber), var(--color-accent-primary));
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-base);
}

.info-card:hover {
    transform: translateY(-5px) scale(1.005);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-md);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent-deep);
    position: relative;
    z-index: 1;
}

.card-text {
    color: var(--color-text-secondary);
    line-height: 1.85;
    position: relative;
    z-index: 1;
    font-size: 0.97rem;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-strong), var(--color-accent-amber), var(--color-border-strong), transparent);
    margin: var(--spacing-lg) 0;
    border-radius: 2px;
    opacity: 0.6;
}

/* ——— Section backgrounds ——— */
.aloe-section {
    background: linear-gradient(180deg, rgba(232, 240, 236, 0.7) 0%, rgba(250, 247, 242, 0.5) 100%);
}

.egg-section {
    background: linear-gradient(135deg, #ffffff 0%, rgba(253, 244, 238, 0.8) 100%);
}

.carrot-section {
    background: linear-gradient(180deg, rgba(253, 244, 238, 0.55) 0%, rgba(232, 240, 236, 0.65) 100%);
}

.spinach-section {
    background: linear-gradient(155deg, rgba(232, 240, 236, 0.85) 0%, rgba(250, 247, 242, 0.9) 60%, #ffffff 100%);
}

.salmon-section {
    background: linear-gradient(180deg, #ffffff 0%, rgba(253, 244, 238, 0.7) 100%);
}

.product-section {
    background: linear-gradient(135deg, rgba(232, 240, 236, 0.6) 0%, rgba(253, 244, 238, 0.75) 55%, rgba(250, 247, 242, 1) 100%);
}

/* ——— Contact / Form strip ——— */
.contact-form-section {
    position: relative;
    padding: calc(var(--spacing-xl) + 1rem) var(--spacing-md);
    background:
        radial-gradient(ellipse 75% 55% at 15% 100%, rgba(217, 119, 6, 0.18) 0%, transparent 52%),
        radial-gradient(ellipse 60% 45% at 90% 0%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        linear-gradient(160deg, #073540 0%, #0d5c63 48%, #0f7079 100%);
    z-index: 1;
    margin-top: var(--spacing-md);
    margin-left: clamp(0px, 2vw, 1.5rem);
    margin-right: clamp(0px, 2vw, 1.5rem);
    border-radius: clamp(20px, 5vw, 38px);
    box-shadow: 0 -6px 40px rgba(26, 31, 46, 0.18);
}

.contact-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(251, 191, 36, 0.22),
        inset 0 0 50px rgba(13, 92, 99, 0.1);
    pointer-events: none;
}

.form-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: #faf7f2;
    letter-spacing: -0.03em;
}

.form-subtitle {
    text-align: center;
    color: rgba(250, 247, 242, 0.8);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    margin-bottom: var(--spacing-lg);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.78;
    font-weight: 400;
}

.contact-form {
    max-width: 560px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-secondary);
    font-size: 0.83rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--color-bg-primary);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.16);
    background: #fff;
}

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

.form-submit {
    text-align: center;
    margin-top: var(--spacing-md);
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-accent-amber) 0%, #f59e0b 100%);
    border: none;
    color: #1a1f2e;
    padding: 0.95rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow-amber);
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(217, 119, 6, 0.4);
    filter: brightness(1.06);
}

.submit-btn:active {
    transform: translateY(0) scale(0.99);
}

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

.disclaimer {
    max-width: 860px;
    margin: var(--spacing-lg) auto 0;
    padding: var(--spacing-md);
    background: rgba(7, 53, 64, 0.55);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
}

.disclaimer-title {
    font-weight: 700;
    color: #fcd34d;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.disclaimer-text {
    color: rgba(250, 247, 242, 0.82);
    font-size: 0.875rem;
    line-height: 1.8;
}

/* ——— Animations ——— */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseSoft {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.06);
    }
}

@keyframes floatBlob {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-52%) rotate(5deg);
    }
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

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

    .content-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-section {
        min-height: 78vh;
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero-section::after {
        opacity: 0.4;
    }

    .content-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .contact-form-section {
        margin-left: 0;
        margin-right: 0;
        border-radius: 24px 24px 0 0;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .image-bg {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 72vh;
    }

    .section-header::before {
        height: 1.75em;
    }

    .content-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .info-card {
        padding: var(--spacing-sm);
    }

    .content-image-wrapper {
        border-radius: 28px 10px 28px 10px;
    }
}
