/* =========================================================
   AMEMOR — GET STARTED v2
   Commercial doorway: clean pricing + full feature depth.
   ========================================================= */

:root {

--red: #f01523;
	--maroon: #970811;
    --blue: #535682;
    --yellow: #e0a030;
    --green: #21622f;
	--slogan:#f4ca80; 
	--teal:#16a6a6;
--purple: #662a81;
	--khaki: #6a7e27;
	--deep-blue: #0d4553;
	--gold: #855a1d;
	--link: #8a90df;
	--red-dark: #970811;
	
--bg: #02242c;
    --panel: #02242c;
    --line: rgba(255,255,255,0.20);
    --text: #f4f5f5;
    --muted: #8eabb0;
    --white: #fff;}
--link-purple: #a37ab6;
--link-red: #fa5a64;
--link-khaki: #a6b379;
--link-green: #77d18b;
    --bg: #02242c;
   
  
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "Helvetica Neue", "Segoe UI Light", Arial, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    background: var(--bg);
    color: var(--text);
    transition: background-color 220ms ease, color 220ms ease;
}

button, input { font: inherit; }

button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

/* ---------- TOP BAR ---------- */

.topbar {
    position: fixed;
    z-index: 20;

    top: 0;
    left: 0;
    right: 0;

    height: 76px;
    padding: 12px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

  background: rgba(2, 36, 44, 0.84);
    border-bottom: 0px solid rgba(255,255,255,0.28);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-button {
    height: 35px;
    min-width: 108px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 0;

    background: var(--green);
    color: #fff;

    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.7px;

    cursor: pointer;
    text-decoration: none;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.control-button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.home-button {
    text-decoration: none;
}

.back-button,
.home-button {
    font-size: 24px;
}

.language-button { min-width: 118px; font-size: 13px; letter-spacing: 1px; }

/* PAGE */

.start-page {
    width: min(1320px, 94vw);
    margin: 0 auto;
    padding: 128px 0 80px;
}

/* HERO */

.hero {
    width: min(500px, 80vw);
    min-height: 210px;
    margin: 52px auto 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--green);
    color: #fff;
}

.hero-number {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 3px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero p {
    margin: 18px 0 0;
    font-size: 21px;
}

/* INTRO */

.intro {
    text-align: center;
    margin: 120px auto 0;
}

.intro-main {
    margin: 0;
    color: var(--text);
    font-size: clamp(22px, 2.2vw, 30px);
    letter-spacing: 1.1px;
}

.intro-sub {
    margin: 12px 0 0;
    color: var(--slogan);
    font-size: 28px;
}

/* FOUNDER OFFER */

.founder-offer {
    width: min(860px, 92vw);
    margin: 96px auto 0;
    padding: 18px 24px;
    text-align: center;
    border: 1px solid rgba(0,155,22,0.55);
    background: rgba(0,155,22,0.08);
}

.offer-label {
    color: var(--slogan);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 7px;
}

.founder-offer strong {
    display: block;
    color: #75fcfc;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
}

.founder-offer span {
    display: block;
    margin-top: 6px;
    color: #77d18b;
    font-size: 21px;
}

/* BILLING */

.billing-controls {
    margin: 134px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.currency-switch,
.period-switch {
    display: flex;
    align-items: center;
    background: var(--panel);
    border: 1px solid var(--line);
}

.switch-button,
.period-button {
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease;
}

.switch-button {
    min-width: 90px;
    padding: 10px 18px;
}

.period-button {
    padding: 11px 20px;
    font-size: 17px;
}

.switch-button.is-selected,
.period-button.is-selected {
    background: var(--khaki);
    color: #fff;
}

.period-button span {
    margin-left: 7px;
    color: #77d18b;
    font-size: 14px;
    font-weight: 600;
}

/* PLANS */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 90px;
    align-items: stretch;
}

.plan-card {
    min-height: 780px;
    padding: 30px 24px 22px;
    display: flex;
    flex-direction: column;
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--line);
    position: relative;
}

.plan-free { border-top: 10px solid var(--yellow); }
.plan-pro { border-top: 10px solid var(--blue); }
.plan-enterprise { border-top: 10px solid var(--green); }
.plan-custom { border-top: 10px solid var(--red); }

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 7px 14px;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.plan-title {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
}

.old-price {
    min-height: 30px;
    margin-top: 26px;
    text-align: center;
    color: var(--muted);
    font-size: 28px;
    text-decoration: line-through;
    font-weight: 500;
}

.plan-free .plan-price,
.plan-custom .plan-price {
    margin-top: 32px;
}

.plan-price {
    text-align: center;
    color: var(--text);
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
}

.price-suffix {
    margin-top: 4px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.founder-note {
    min-height: 18px;
    margin-top: 8px;
    text-align: center;
    color: #77d18b;
    font-size: 16px;
    font-weight: 700;
}

.annual-note {
    min-height: 18px;
    margin-top: 5px;
    text-align: center;
    color: var(--white);
    font-size: 12px;
}

.plan-subtitle {
    min-height: 52px;
    margin: 24px 0 0;
    text-align: center;
    color: #75fcfc;
    font-size: 19px;
    line-height: 1.45;
	font-weight: 700;
}

.feature-list {
    margin: 22px 0 24px;
    padding: 0;
    list-style: none;
    flex: 1;
}

.feature-list li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 19px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.45;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 500;
}

.plan-action {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    letter-spacing: 0.7px;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.plan-action:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.plan-action.primary {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.plan-action.primary:hover {
    background: #000;
    border-color: #000;
}

/* COMPARISON */

.compare-section {
    margin-top: 86px;
}

.compare-toggle {
    width: 100%;
    min-height: 68px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--khaki);
    color: var(--white);
    cursor: pointer;
    letter-spacing: 2px;
    font-size: 28px;
    transition: background-color 180ms ease, color 180ms ease;
}

.compare-toggle:hover {
    background: #000;
    color: #fff;
}

.compare-arrow {
    font-size: 37px;
    font-weight: 300;
}

.compare-panel {
    display: none;
    margin-top: 14px;
}

.compare-panel.is-open {
    display: block;
}

.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
}

.compare-table th,
.compare-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    text-align: center;
    font-size: 16px;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
}

.compare-table th {
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}

.compare-table td {
    color: var(--slogan);
}

/* VOICE ADD-ON */

.voice-section {
    width: min(900px, 92vw);
    margin: 92px auto 0;
    text-align: center;
}

.voice-kicker {
    color: var(--slogan);
    font-size: 16px;
    letter-spacing: 3px;
}

.voice-section h2 {
    margin: 14px 0 0;
    color: var(--text);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 300;
    letter-spacing: 1px;
}

.voice-intro {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 24px;
}

.voice-card {
    width: min(560px, 100%);
    margin: 34px auto 0;
    padding: 32px 34px 30px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.voice-label {
    color: var(--slogan);
    font-size: 19px;
    letter-spacing: 2.5px;
}

.voice-price {
    margin-top: 12px;
    color: var(--link-red);
    font-size: clamp(48px, 6vw, 70px);
    line-height: 1;
    font-weight: 300;
}

.voice-card p {
    max-width: 470px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 24px;
    line-height: 1.5;
}

.voice-note {
    margin-top: 20px;
    color: var(--text);
    font-size: 11px;
    letter-spacing: 1.5px;
}

.voice-more {
    display: block;
    margin: 30px auto 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--slogan);
    font-size: 16px;
    letter-spacing: 1.8px;
    cursor: pointer;
}

.voice-more:hover,
.voice-more:focus-visible {
    color: var(--link-red);
    outline: none;
}

.voice-details {
    max-width: 470px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 300ms ease, opacity 220ms ease, padding 300ms ease;
}

.voice-details.is-open {
    max-height: 320px;
    padding: 18px 0 2px;
    opacity: 1;
}

.voice-details p {
    margin: 0;
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
}

.voice-details ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.voice-details-note {
    margin-top: 14px !important;
    font-size: 15px !important;
    opacity: .72;
}

.voice-action {
    width: 100%;
    min-height: 50px;
    margin-top: 25px;
    border: 0;
    border-radius: 0;
    background: var(--red);
    color: #fff;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 180ms ease, transform 180ms ease;
}

.voice-action:hover {
    background: #000;
    transform: translateY(-2px);
}

/* FAQ */

.faq-section {
    width: min(900px, 92vw);
    margin: 90px auto 0;
}

.section-kicker {
    text-align: center;
    color: var(--muted);
    font-size: 21px;
    letter-spacing: 3px;
}

.faq-section h2 {
    margin: 14px 0 28px;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.faq-list details {
    border-top: 1px solid var(--line);
}

.faq-list details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    padding: 20px 4px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    font-size: 28px;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin: -4px 30px 20px 4px;
    color: var(--muted);
    font-size: 25px;
    line-height: 1.6;
}

.faq-link {
    display: inline-block;
    margin: 0 0 22px 4px;
    color: var(--text);
    font-size: 21px;
    letter-spacing: 1px;
    text-decoration: none;
}

.faq-link:hover {
    color: var(--green);
}

/* FINAL CTA */

.final-cta {
    margin: 100px auto 0;
    text-align: center;
}

.cta-kicker {
    color: var(--muted);
    font-size: 21px;
    letter-spacing: 3px;
}

.final-cta h2 {
    margin: 14px 0 24px;
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cta-button {
    min-width: 180px;
    min-height: 54px;
    border: 0;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 180ms ease, transform 180ms ease;
}

.cta-button:hover {
    background: #000;
    transform: translateY(-2px);
}

.cta-free { background: var(--yellow); color: #111; }
.cta-pro { background: var(--green); }

/* FOOTER */

.footer {
    padding: 30px 20px 40px;
    text-align: center;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 3px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-card {
        min-height: 720px;
    }
}

@media (max-width: 760px) {
    .voice-section {
        width: 92vw;
        margin-top: 70px;
    }

    .voice-card {
        padding: 28px 22px 24px;
    }

    .voice-section h2 {
        font-size: 26px;
    }

    .voice-intro {
        font-size: 16px;
    }

    .topbar {
        height: 68px;
        padding: 10px 12px;
    }

    .control-button {
        min-width: 72px;
        height: 42px;
        padding: 0 12px;
        font-size: 12px;
    }

    .start-page {
        padding-top: 100px;
    }

    .hero {
        margin-top: 28px;
    }

    .period-switch {
        flex-wrap: wrap;
        justify-content: center;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        min-height: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: min(300px, 90vw);
    }
}
