/* ==========================================================
   ORIGEN EGG BANK — LANDING PAGE
   Matches Lucina visual style with Origen gold/teal branding
   ========================================================== */

:root {
    --eb-primary:       #153132;
    --eb-primary-dark:  #0a1c1d;
    --eb-primary-light: #1e4748;
    --eb-gold:          #c39d12;
    --eb-gold-light:    #d4af37;
    --eb-gold-pale:     #f5edcc;
    --eb-gold-bg:       #faf6e8;
    --eb-white:         #ffffff;
    --eb-off-white:     #f9f9f9;
    --eb-gray-light:    #f3f4f6;
    --eb-gray:          #e8eaed;
    --eb-border:        #e2e4e8;
    --eb-text-dark:     #1f2937;
    --eb-text-body:     #4b5563;
    --eb-text-muted:    #9ca3af;
    --eb-success:       #10b981;
    --eb-danger:        #ef4444;
    --eb-shadow-sm:     0 1px 3px rgba(0,0,0,0.06);
    --eb-shadow-md:     0 4px 20px rgba(0,0,0,0.08);
    --eb-shadow-lg:     0 10px 40px rgba(0,0,0,0.12);
    --eb-radius-sm:     8px;
    --eb-radius-md:     16px;
    --eb-radius-lg:     24px;
    --eb-radius-pill:   999px;
    --eb-font:          'Playfair Display', 'comma-font', Georgia, serif;
    --eb-font-sans:     'Century Gothic', 'CenturyGothic', -apple-system, BlinkMacSystemFont, sans-serif;
    --eb-transition:    0.3s ease;
    --eb-max-width:     1200px;
}

/* RESET & BASE */
.eb-landing-body,
#eb-landing-wrap {
    margin: 0;
    padding: 0;
    background: var(--eb-white);
    color: var(--eb-text-dark);
    font-family: var(--eb-font-sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

#eb-landing-wrap *,
#eb-landing-wrap *::before,
#eb-landing-wrap *::after { box-sizing: border-box; }

.eb-landing-body h1,
.eb-landing-body h2,
.eb-landing-body h3,
.eb-landing-body h4,
.eb-landing-body p { margin: 0; padding: 0; }

.eb-landing-body a { text-decoration: none; color: inherit; }
.eb-landing-body ul { list-style: none; margin: 0; padding: 0; }

.eb-container {
    max-width: var(--eb-max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* OVERLINE WITH DECORATIVE LINES */
.eb-overline-deco {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eb-gold);
    margin-bottom: 14px;
}

.eb-overline-deco__line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--eb-gold);
}

.eb-overline-deco--light {
    color: var(--eb-gold-light);
}

.eb-overline-deco--light .eb-overline-deco__line {
    background: var(--eb-gold-light);
}

/* NAVIGATION */
.eb-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--eb-white);
    border-bottom: 1px solid var(--eb-border);
    transition: box-shadow var(--eb-transition);
}

.eb-nav--scrolled {
    box-shadow: var(--eb-shadow-sm);
}

.eb-nav__inner {
    max-width: var(--eb-max-width);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.eb-nav__logo img {
    height: 42px;
    width: auto;
}

.eb-nav__logo-text {
    font-family: var(--eb-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--eb-primary);
}

.eb-nav__links {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-left: auto;
}

.eb-nav__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--eb-text-body);
    transition: color var(--eb-transition);
}

.eb-nav__link:hover { color: var(--eb-gold); }

.eb-nav__cta { margin-left: 12px; }

.eb-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.eb-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--eb-primary);
    border-radius: 2px;
    transition: all var(--eb-transition);
}

.eb-nav__toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.eb-nav__toggle--active span:nth-child(2) { opacity: 0; }
.eb-nav__toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eb-nav__mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px 24px;
    background: var(--eb-white);
    border-top: 1px solid var(--eb-border);
}

.eb-nav__mobile--open { display: flex; }
.eb-nav__mobile .eb-nav__link { color: var(--eb-text-body) !important; }

/* BUTTONS — PILL SHAPED */
.eb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--eb-font-sans);
    font-weight: 700;
    border-radius: var(--eb-radius-pill);
    cursor: pointer;
    transition: all var(--eb-transition);
    border: 2px solid transparent;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.eb-btn--sm { padding: 11px 24px; font-size: 0.82rem; }
.eb-btn--lg { padding: 15px 36px; font-size: 0.92rem; }

.eb-btn--primary {
    background: var(--eb-gold);
    color: var(--eb-white);
    border-color: var(--eb-gold);
    box-shadow: 0 4px 14px rgba(195, 157, 18, 0.25);
}

.eb-btn--primary:hover {
    background: var(--eb-gold-light);
    border-color: var(--eb-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(195, 157, 18, 0.35);
}

.eb-btn--outline {
    background: transparent;
    color: var(--eb-primary);
    border-color: var(--eb-primary);
}

.eb-btn--outline:hover {
    background: var(--eb-primary);
    color: var(--eb-white);
}

.eb-btn--wa {
    background: #25d366;
    color: var(--eb-white);
    border-color: #25d366;
}

.eb-btn--wa:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: translateY(-2px);
}

/* HERO — WHITE BACKGROUND, CLEAN */
.eb-hero {
    position: relative;
    padding: 130px 0 80px;
    background: var(--eb-white);
    overflow: hidden;
}

.eb-hero > .eb-container {
    max-width: 1320px;
}

.eb-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.eb-hero__content {
    position: relative;
    z-index: 2;
}

.eb-hero__label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eb-gold);
    margin-bottom: 24px;
}

.eb-hero__label-line {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: var(--eb-gold);
}

.eb-hero__headline {
    font-family: var(--eb-font);
    font-size: clamp(2.4rem, 4.2vw, 3.5rem);
    font-weight: 700;
    color: var(--eb-text-dark);
    line-height: 1.18;
    margin-bottom: 28px;
}

.eb-hero__sub {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--eb-text-body);
    margin-bottom: 36px;
    max-width: 540px;
}

.eb-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.eb-hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.eb-hero__image-egg {
    width: 380px;
    height: 440px;
    border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.eb-hero__image-egg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FORM SECTION — Dark bg with radius top-left / bottom-right */
.eb-form-section {
    position: relative;
    padding: 80px 0 70px;
    background: var(--eb-primary);
    border-radius: 250px 0 250px 0;
    overflow: hidden;
}

.eb-form-section__curve {
    display: none;
}

.eb-form-intro {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
}

.eb-hero__label--light {
    color: var(--eb-gold-light);
}

.eb-hero__label-line--light {
    background: var(--eb-gold-light);
}

.eb-form-selector {
    margin-top: 28px;
    max-width: 320px;
}

.eb-form-selector__select {
    width: 100%;
    height: 50px;
    padding: 0 44px 0 20px;
    font-family: var(--eb-font-sans);
    font-size: 0.92rem;
    color: var(--eb-white);
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--eb-radius-pill);
    outline: none;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    transition: all var(--eb-transition);
}

.eb-form-selector__select:hover {
    border-color: var(--eb-gold);
    background-color: rgba(255,255,255,0.12);
}

.eb-form-selector__select:focus {
    border-color: var(--eb-gold);
    box-shadow: 0 0 0 3px rgba(195, 157, 18, 0.2);
}

.eb-form-selector__select option {
    background: #ffffff;
    color: #153132;
    padding: 12px 16px;
    font-size: 0.92rem;
}

.eb-form-panel {
    margin-top: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.eb-overline {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--eb-gold);
    margin-bottom: 10px;
}

.eb-section-title {
    font-family: var(--eb-font);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 700;
    color: var(--eb-text-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.eb-section-title--light { color: var(--eb-white); }

.eb-section-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--eb-text-body);
    margin-bottom: 20px;
}

.eb-section-body--light { color: rgba(255,255,255,0.8); }

.eb-section-subtitle {
    font-size: 1rem;
    color: var(--eb-text-body);
    margin-top: -4px;
}

.eb-form-card {
    background: var(--eb-white);
    border-radius: var(--eb-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.eb-form-card__header {
    background: var(--eb-gold);
    padding: 22px 28px;
    text-align: center;
}

.eb-form-card__header h3 {
    font-family: var(--eb-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--eb-white);
    margin-bottom: 4px;
}

.eb-form-card__header p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

.eb-form-card__body { padding: 32px 36px; }

.eb-form-card__body .gform_wrapper {
    margin: 0 !important;
    max-width: 100% !important;
}

.eb-form-card__body .gform_wrapper .gform_body {
    margin: 0 !important;
}

.eb-form-card__body .gform_wrapper .gform_fields {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
}

.eb-form-card__body .gform_wrapper .gfield--width-full,
.eb-form-card__body .gform_wrapper .gfield_contains_required[class*="textarea"],
.eb-form-card__body .gform_wrapper .gfield--type-textarea,
.eb-form-card__body .gform_wrapper .gfield--type-checkbox,
.eb-form-card__body .gform_wrapper .gfield_html,
.eb-form-card__body .gform_wrapper .gform_footer,
.eb-form-card__body .gform_wrapper .gfield:last-of-type {
    grid-column: 1 / -1 !important;
}

.eb-form-card__body .gform_wrapper .gfield_label {
    font-family: var(--eb-font-sans) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: var(--eb-text-dark) !important;
    margin-bottom: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
}

.eb-form-card__body .gform_wrapper input[type="text"],
.eb-form-card__body .gform_wrapper input[type="email"],
.eb-form-card__body .gform_wrapper input[type="tel"],
.eb-form-card__body .gform_wrapper textarea,
.eb-form-card__body .gform_wrapper select {
    width: 100% !important;
    padding: 12px 18px !important;
    border: 1.5px solid var(--eb-gold) !important;
    border-radius: var(--eb-radius-pill) !important;
    font-family: var(--eb-font-sans) !important;
    font-size: 0.88rem !important;
    color: var(--eb-text-dark) !important;
    transition: border-color var(--eb-transition), box-shadow var(--eb-transition) !important;
    background: var(--eb-white) !important;
    box-sizing: border-box !important;
}

.eb-form-card__body .gform_wrapper textarea {
    border-radius: 16px !important;
    min-height: 100px !important;
    resize: vertical !important;
}

.eb-form-card__body .gform_wrapper input:focus,
.eb-form-card__body .gform_wrapper textarea:focus,
.eb-form-card__body .gform_wrapper select:focus {
    border-color: var(--eb-gold) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(195, 157, 18, 0.15) !important;
}

.eb-form-card__body .gform_wrapper .gfield--type-checkbox .gfield_label,
.eb-form-card__body .gform_wrapper .gfield--type-checkbox .gfield_required {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.04em !important;
}

.eb-form-card__body .gform_wrapper .gchoice {
    margin-bottom: 6px !important;
}

.eb-form-card__body .gform_wrapper .gform_footer,
.eb-form-card__body .gform_wrapper .gform_page_footer {
    margin-top: 16px !important;
    padding: 0 !important;
}

.eb-form-card__body .gform_wrapper .gform_button,
.eb-form-card__body .gform_wrapper input[type="submit"] {
    width: 100% !important;
    padding: 15px 28px !important;
    background: var(--eb-gold) !important;
    color: var(--eb-white) !important;
    border: none !important;
    border-radius: var(--eb-radius-pill) !important;
    font-family: var(--eb-font-sans) !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    cursor: pointer !important;
    transition: all var(--eb-transition) !important;
    box-shadow: 0 4px 14px rgba(195, 157, 18, 0.25) !important;
}

.eb-form-card__body .gform_wrapper .gform_button:hover,
.eb-form-card__body .gform_wrapper input[type="submit"]:hover {
    background: var(--eb-gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(195, 157, 18, 0.35) !important;
}

/* SECTION HEADER */
.eb-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.eb-section-header--left {
    text-align: left;
    max-width: 100%;
    margin: 0 0 50px;
}

/* BENEFITS — 4 cards */
.eb-benefits {
    padding: 90px 0;
    background: var(--eb-off-white);
}

.eb-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.eb-benefit-card {
    background: var(--eb-white);
    border: none;
    border-radius: var(--eb-radius-lg);
    padding: 36px 32px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--eb-transition);
}

.eb-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.eb-benefit-card__number {
    display: inline-block;
    font-family: var(--eb-font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--eb-gold);
    opacity: 0.35;
    margin-bottom: 12px;
    line-height: 1;
}

.eb-benefit-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--eb-gold-pale), var(--eb-gold-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--eb-gold);
    box-shadow: 0 4px 14px rgba(195, 157, 18, 0.15);
}

.eb-benefit-card h3 {
    font-family: var(--eb-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--eb-text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
    line-height: 1.3;
}

.eb-benefit-card p {
    font-size: 0.83rem;
    line-height: 1.65;
    color: var(--eb-text-body);
}

/* PROMISE — DARK BACKGROUND */
.eb-promise {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--eb-primary-dark) 0%, var(--eb-primary) 100%);
    overflow: hidden;
}

.eb-promise::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 30%, rgba(195, 157, 18, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(195, 157, 18, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.eb-promise__decor {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    background: var(--eb-gold);
}

.eb-promise__decor--leaf-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
}

.eb-promise__decor--leaf-2 {
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    opacity: 0.1;
}

.eb-promise__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.eb-promise__list {
    margin-bottom: 32px;
}

.eb-promise__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.eb-promise__list li svg {
    flex-shrink: 0;
    color: var(--eb-gold-light);
    margin-top: 2px;
}

.eb-promise__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.eb-promise__right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.eb-promise__image-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(195, 157, 18, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.eb-promise__image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eb-promise__image-circle::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
    background: var(--eb-gold);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(3px);
}

/* AI SECTION */
.eb-ai {
    padding: 90px 0;
    background: var(--eb-white);
}

.eb-ai__inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.eb-ai__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.eb-ai__image-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--eb-gold-pale);
    box-shadow: var(--eb-shadow-lg);
    position: relative;
}

.eb-ai__image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eb-ai__scan-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 180px;
    transform: translate(-50%, -50%);
    border: 2px solid var(--eb-gold);
    border-radius: 12px;
    pointer-events: none;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.15);
}

.eb-ai__scan-frame::before,
.eb-ai__scan-frame::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid var(--eb-gold);
}

.eb-ai__scan-frame::before {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}

.eb-ai__scan-frame::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

.eb-ai .eb-section-title { margin-bottom: 16px; }
.eb-ai .eb-section-body { margin-bottom: 28px; }

/* RATES TABLE */
.eb-rates {
    padding: 90px 0;
    background: var(--eb-gold-bg);
}

.eb-rates__table-wrap {
    max-width: 820px;
    margin: 0 auto;
    border-radius: var(--eb-radius-lg);
    overflow: hidden;
    box-shadow: var(--eb-shadow-md);
    background: var(--eb-white);
}

.eb-rates__table {
    width: 100%;
    border-collapse: collapse;
}

.eb-rates__table thead tr {
    background: linear-gradient(135deg, var(--eb-primary) 0%, var(--eb-primary-light) 100%);
}

.eb-rates__table th {
    padding: 18px 26px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--eb-white);
    text-align: left;
}

.eb-rates__table tbody tr {
    background: var(--eb-white);
    border-bottom: 1px solid var(--eb-border);
}

.eb-rates__table tbody tr:nth-child(even) {
    background: var(--eb-off-white);
}

.eb-rates__table tbody tr:last-child { border-bottom: none; }

.eb-rates__table td {
    padding: 18px 26px;
    font-size: 0.92rem;
    color: var(--eb-text-body);
}

.eb-rates__val--highlight {
    font-weight: 700;
    color: var(--eb-gold) !important;
    font-size: 1.1rem !important;
}

.eb-rates__val--muted {
    color: var(--eb-text-muted) !important;
}

.eb-rates__footnote {
    text-align: center;
    font-size: 0.78rem;
    color: var(--eb-text-muted);
    margin-top: 18px;
    font-style: italic;
}

/* ADVANTAGES — Two col compare */
.eb-advantages {
    padding: 90px 0;
    background: var(--eb-white);
}

.eb-advantages__compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.eb-advantages__col {
    border-radius: var(--eb-radius-lg);
    padding: 32px 28px;
    transition: transform var(--eb-transition);
}

.eb-advantages__col--ours {
    background: linear-gradient(135deg, var(--eb-gold-bg) 0%, var(--eb-white) 100%);
    border: 2px solid var(--eb-gold-pale);
    box-shadow: var(--eb-shadow-md);
}

.eb-advantages__col--theirs {
    background: var(--eb-off-white);
    border: 1px solid var(--eb-border);
}

.eb-advantages__col-header {
    font-family: var(--eb-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--eb-text-dark);
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--eb-border);
    text-align: center;
}

.eb-advantages__col--ours .eb-advantages__col-header {
    color: var(--eb-primary);
    border-bottom-color: var(--eb-gold);
}

.eb-advantages__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--eb-border);
}

.eb-advantages__item:last-child { border-bottom: none; }

.eb-advantages__item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.eb-advantages__item-icon--check {
    background: rgba(16, 185, 129, 0.12);
    color: var(--eb-success);
}

.eb-advantages__item-icon--x {
    background: rgba(239, 68, 68, 0.12);
    color: var(--eb-danger);
}

.eb-advantages__item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--eb-text-dark);
    margin-bottom: 4px;
}

.eb-advantages__item p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--eb-text-body);
    margin: 0;
}

/* FINAL CTA */
.eb-final-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--eb-primary-dark) 0%, var(--eb-primary) 100%);
    position: relative;
    overflow: hidden;
}

.eb-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(195, 157, 18, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.eb-final-cta__inner {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.eb-final-cta__inner h2 {
    font-family: var(--eb-font);
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 700;
    color: var(--eb-white);
    margin-bottom: 18px;
}

.eb-final-cta__inner p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
}

.eb-final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* FOOTER */
.eb-footer {
    background: #050d0e;
    padding: 44px 0 20px;
}

.eb-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.eb-footer__name {
    font-family: var(--eb-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--eb-white);
    margin-bottom: 6px;
}

.eb-footer__address {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 6px;
}

.eb-footer__phone {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--eb-gold);
    transition: color var(--eb-transition);
}

.eb-footer__phone:hover { color: var(--eb-gold-light); }

.eb-footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.eb-footer__links a {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--eb-transition);
}

.eb-footer__links a:hover { color: var(--eb-gold); }

.eb-footer__bottom {
    padding-top: 16px;
    text-align: center;
}

.eb-footer__bottom p {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.3);
}

/* RESPONSIVE — TABLET */
@media (max-width: 1024px) {
    .eb-nav__links { display: none; }
    .eb-nav__toggle { display: flex; }
    .eb-nav__cta { display: none; }

    .eb-hero { padding: 110px 0 60px; }
    .eb-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .eb-hero__label { justify-content: center; }
    .eb-hero__sub { margin-left: auto; margin-right: auto; }
    .eb-hero__actions { justify-content: center; }
    .eb-hero__image-egg { width: 280px; height: 320px; }



    .eb-promise__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .eb-promise__list li { text-align: left; }
    .eb-promise__actions { justify-content: center; }
    .eb-promise__image-circle { width: 280px; height: 280px; }

    .eb-ai__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .eb-ai__image-circle { width: 240px; height: 240px; margin: 0 auto; }

    .eb-advantages__compare { grid-template-columns: 1fr; }

    .eb-form-panel { max-width: 100%; }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {
    .eb-hero { padding: 100px 0 50px; }
    .eb-hero__headline { font-size: 1.9rem; }
    .eb-hero__image-egg { width: 240px; height: 280px; }

    .eb-benefits,
    .eb-promise,
    .eb-ai,
    .eb-rates,
    .eb-advantages,
    .eb-final-cta {
        padding: 60px 0;
    }

    .eb-benefits__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .eb-benefit-card { padding: 24px 18px; }

    .eb-rates__table th,
    .eb-rates__table td {
        padding: 12px 14px;
        font-size: 0.8rem;
    }

    .eb-form-card__body .gform_wrapper .gform_fields {
        grid-template-columns: 1fr !important;
    }

    .eb-form-card__body { padding: 24px 20px; }

    .eb-footer__inner {
        flex-direction: column;
        gap: 20px;
    }

    .eb-btn--lg {
        padding: 13px 28px;
        font-size: 0.86rem;
    }

    .eb-final-cta__actions,
    .eb-promise__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .eb-promise__image-circle,
    .eb-ai__image-circle { width: 220px; height: 220px; }
}

@media (max-width: 480px) {
    .eb-benefits__grid { grid-template-columns: 1fr; }
    .eb-hero__headline { font-size: 1.5rem; }
    .eb-section-title { font-size: 1.35rem; }
    .eb-form-card__body { padding: 20px; }
    .eb-overline-deco__line { width: 20px; }
}
