/* ── Hero ── */
.hero-section {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 420px;
    height: 420px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.35), transparent 70%);
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 320px;
    height: 320px;
    bottom: 10%;
    left: -80px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.3), transparent 70%);
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 30%;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.25), transparent 70%);
    animation-delay: -5s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

.hero-ring {
    position: absolute;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.hero-ring-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    animation: spin-slow 30s linear infinite;
}

.hero-ring-2 {
    width: 380px;
    height: 380px;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    border-color: rgba(82, 183, 136, 0.15);
    animation: spin-slow 25s linear infinite reverse;
}

@keyframes spin-slow {
    to { transform: translateY(-50%) rotate(360deg); }
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(201, 162, 39, 0.4);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.15);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-gold);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--accent-dark);
    margin-bottom: 1.25rem;
}

.hero-title em {
    font-style: italic;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--ink-soft);
    font-size: 1.12rem;
    max-width: 46ch;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 480px;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 162, 39, 0.25);
    padding: 0.85rem 0.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.stat-pill-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--brand-dark);
    line-height: 1.2;
}

.stat-pill-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-card {
    background: var(--gradient-forest);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    color: #fff;
    box-shadow: 0 30px 70px rgba(27, 67, 50, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    position: relative;
    overflow: hidden;
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.hero-visual:hover .hero-card {
    transform: rotateY(0deg) rotateX(0deg);
}

.hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.hero-card::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.45), transparent 65%);
}

.hero-card-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.2);
    filter: blur(30px);
}

.hero-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-gold);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-pill);
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.hero-card-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.hero-card-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.hero-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
    z-index: 1;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.hero-card-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.35);
    color: var(--brand-light);
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

.hero-float-tag {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #fff;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: float-tag 4s ease-in-out infinite;
    z-index: 3;
}

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

.hero-float-tag-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hero-float-tag-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.3;
}

.hero-float-tag-text span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-muted);
}

/* ── Trust strip ── */
.trust-strip {
    background: var(--accent-dark);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.trust-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent 30%, transparent 70%, rgba(201, 162, 39, 0.08));
}

.trust-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
}

/* ── Steps ── */
.steps-section {
    padding: 5rem 0;
    position: relative;
}

.steps-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4), transparent);
}

.steps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--accent-dark);
    margin-bottom: 0.6rem;
}

.steps-subtitle {
    color: var(--ink-soft);
    max-width: 52ch;
    margin: 0 auto;
    font-size: 1.05rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 2.8rem;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand));
    opacity: 0.35;
    z-index: 0;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 162, 39, 0.3);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-gold);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent-dark);
    margin-bottom: 0.6rem;
}

.step-text {
    color: var(--ink-soft);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ── Ingredient sections ── */
.content-section {
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: attr(data-watermark);
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(8rem, 18vw, 14rem);
    font-weight: 700;
    color: rgba(27, 67, 50, 0.04);
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.aloe-section {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.08) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(201, 162, 39, 0.06) 100%);
}

.egg-section {
    background: linear-gradient(225deg, rgba(201, 162, 39, 0.1) 0%, rgba(255, 255, 255, 0.8) 60%, rgba(243, 237, 227, 0.9) 100%);
}

.carrot-section {
    background: linear-gradient(180deg, rgba(232, 168, 56, 0.08), rgba(255, 255, 255, 0.6));
}

.spinach-section {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.12) 0%, rgba(255, 255, 255, 0.75) 100%);
}

.salmon-section {
    background: linear-gradient(225deg, rgba(27, 67, 50, 0.06) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.product-section {
    background: linear-gradient(180deg, var(--accent-dark) 0%, #2d6a4f 100%);
    color: #fff;
}

.product-section .section-label {
    color: var(--brand-light);
    background: rgba(201, 162, 39, 0.2);
    border-color: rgba(201, 162, 39, 0.4);
}

.product-section .section-title {
    color: #fff;
}

.product-section .section-text {
    color: rgba(255, 255, 255, 0.82);
}

.product-section .feature-list li {
    color: rgba(255, 255, 255, 0.85);
}

.product-section .feature-list li::before {
    background: rgba(201, 162, 39, 0.3);
    color: var(--brand-light);
}

.product-section::before {
    color: rgba(255, 255, 255, 0.04);
}

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

.section-number {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-number::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    color: var(--accent-dark);
    margin-bottom: 0.6rem;
}

.section-subtitle,
.section-text {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.highlight-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--accent-dark);
    background: rgba(82, 183, 136, 0.18);
    border: 1px solid rgba(82, 183, 136, 0.35);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.85rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 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 rgba(201, 162, 39, 0.2);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.content-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 28px 60px rgba(27, 67, 50, 0.18);
}

.content-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(27, 67, 50, 0.25) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.content-image-wrapper:hover::before {
    opacity: 1;
}

.content-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px rgba(201, 162, 39, 0.2);
    pointer-events: none;
    z-index: 2;
}

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

.content-image {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-image-wrapper:hover .content-image {
    transform: scale(1.05);
}

.image-bg {
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.content-image-wrapper:hover .image-bg {
    transform: scale(1.05);
}

.product-section .image-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.95);
    background-position: center;
}

.product-section .content-image-wrapper {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.35rem;
    box-shadow: var(--shadow-soft);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.bento-card:hover {
    border-color: rgba(201, 162, 39, 0.45);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card.wide {
    grid-column: span 2;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.08rem;
    color: var(--accent-dark);
    margin-bottom: 0.45rem;
}

.card-text {
    color: var(--ink-soft);
    font-size: 0.91rem;
    line-height: 1.65;
}

.content-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin-bottom: 0.5rem;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: var(--shadow);
}

.info-card:hover::after {
    transform: scaleX(1);
}

.divider {
    margin: 2rem 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), var(--accent), transparent);
    opacity: 0.4;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.96rem;
}

.feature-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(82, 183, 136, 0.18);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* ── FAQ ── */
.faq-section {
    padding: 5rem 0;
    background: var(--surface-alt);
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), transparent);
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item.open {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(201, 162, 39, 0.06);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.15);
    color: var(--brand-dark);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gradient-gold);
    color: var(--ink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 320px;
}

.faq-answer-inner {
    padding: 0 1.4rem 1.25rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.75;
    border-top: 1px solid var(--line);
    margin-top: 0;
    padding-top: 1rem;
}

/* ── Form ── */
.contact-form-section {
    padding: 5rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12), transparent 65%);
    pointer-events: none;
}

.form-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--accent-dark);
}

.form-subtitle {
    text-align: center;
    color: var(--ink-soft);
    max-width: 58ch;
    margin: 0.85rem auto 2rem;
    font-size: 1.05rem;
}

.contact-form {
    max-width: 620px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.contact-form::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, var(--brand), var(--accent), var(--brand-light));
    z-index: -1;
    opacity: 0.6;
}

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

.form-label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    font: inherit;
    background: var(--bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

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

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

.submit-btn {
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--gradient-gold);
    color: var(--ink);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(201, 162, 39, 0.4);
}

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

.disclaimer {
    max-width: 880px;
    margin: 2rem auto 0;
    background: rgba(27, 67, 50, 0.05);
    border: 1px solid rgba(27, 67, 50, 0.12);
    border-left: 4px solid var(--brand);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.4rem;
}

.disclaimer-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--accent-dark);
    margin-bottom: 0.45rem;
}

.disclaimer-text {
    color: var(--ink-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 980px) {
    .hero-section {
        min-height: auto;
        padding: 3.5rem 0 3rem;
    }

    .hero-inner,
    .content-grid,
    .content-cards-grid,
    .steps-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .bento-card.wide {
        grid-column: span 1;
    }

    .hero-visual {
        order: -1;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .hero-card {
        transform: none;
    }

    .hero-float-tag {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }

    .steps-grid::before {
        display: none;
    }

    .hero-ring-1,
    .hero-ring-2 {
        display: none;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
