:root {
    --ag-yellow: #dc9813;
    --ag-yellow-soft: rgba(220, 152, 19, .09);
    --ag-yellow-strong: #c47f05;
    --ag-green: #2c7a59;
    --ag-green-soft: rgba(44, 122, 89, .09);
    --ag-ink: #1e1f23;
    --ag-muted: #5a5d66;
    --ag-ring: #ececf0;
}

body {
    margin: 0;
    padding-top: 54px; /* hely a fix headernek */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #ffffff;
    color: var(--ag-ink);
}

/* ===== TOP FIX HEADER ===== */
.ag-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e3e4ea;
}

.ag-topbar__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13.5px;
}

.ag-topbar__brand {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ag-ink);
    white-space: nowrap;
}

.ag-topbar__brand span {
    color: var(--ag-yellow);
}

.ag-topbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ag-topbar__hint {
    color: #6b6d76;
    font-size: 12px;
}

.ag-topbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    border: 1px solid var(--ag-yellow);
    background: var(--ag-yellow-soft);
    color: var(--ag-ink);
    box-shadow: 0 6px 14px rgba(220, 152, 19, .16);
    transition: background .15s ease, color .15s ease, box-shadow .15s ease, transform .06s ease;
    white-space: nowrap;
}

.ag-topbar__cta:hover {
    background: var(--ag-yellow);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(220, 152, 19, .26);
}

@media (max-width: 640px) {
    .ag-topbar__inner {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .ag-topbar__brand {
        font-size: 13px;
        flex-shrink: 0;
    }
    .ag-topbar__right {
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 8px;
    }
    .ag-topbar__hint {
        display: none;
    }
    .ag-topbar__cta {
        padding: 6px 10px;
        font-size: 12px;
        flex-shrink: 0;
    }
}

/* ===== SECTION BASE / HEADING CSÍK ===== */
section h2 {
    position: relative;
}

/* Finom "zöld gerinc" a szekciók tetején, de dominánsan sárga elemekkel */
.ag-pain,
.ag-how,
.ag-interview,
.ag-benefits,
.ag-community,
.ag-pricing,
.ag-prop,
#about-team {
    border-top: 3px solid rgba(44, 122, 89, .06);
}

/* ===== HERO ===== */
.ag-hero {
    --accent: var(--ag-yellow);
    --accent-ink: var(--ag-ink);
    --text: var(--ag-ink);
    --muted: var(--ag-muted);
    --ring: var(--ag-ring);
    --bg: radial-gradient(circle at top left, rgba(220,152,19,.08), transparent 50%),
           radial-gradient(circle at bottom right, rgba(44,122,89,.06), transparent 55%),
           linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    background: var(--bg);
    padding: 64px 16px 48px;
}

.ag-hero__grid {
    display: grid;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 960px) {
    .ag-hero__grid {
        grid-template-columns: 50% 50%;
    }
}

.ag-hero__eyebrow {
    color: var(--ag-green);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: .3px;
}

.ag-hero__title {
    color: var(--text);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 12px;
    font-size: clamp(28px, 3.8vw, 50px);
}

.ag-hero__title span {
    color: var(--accent);
}

.ag-hero__lead {
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.55;
    margin: 0 0 24px;
}
.ag-hero__cta {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  padding: 13px 24px;
  border-radius: 12px;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

/* Shared CTA base to ensure consistent hover transforms */
.ag-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 12px;
  transition: transform .06s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.ag-cta--lift:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.ag-hero__cta--primary {
    background: var(--accent);
    color: #1b1201;
    border: 1px solid var(--accent);
    box-shadow: 0 12px 26px rgba(220, 152, 19, .32);
}

.ag-hero__cta--primary:hover {
    background: var(--ag-yellow-strong);
    border-color: var(--ag-yellow-strong);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(220, 152, 19, .38);
}

.ag-hero__note {
    margin: 12px 0 0;
    font-size: 14px;
    color: #6b6c74;
}

.ag-hero__right {
    position: relative;
    display: grid;
    gap: 14px;
    width: 100%;
    min-width: 0;
}

.ag-hero__video {
    position: relative;
    width: 100%;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .1);
    border: 1px solid var(--ag-ring);
    background: #000;
    aspect-ratio: 16 / 9;
}

.ag-hero__video::before {
    content: "";
    display: none;
}

.ag-hero__video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ag-hero__image {
    position: absolute;
    bottom: -12%;
    right: -8%;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .15);
    border: 2px solid #fff;
}

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

@media (max-width: 959px) {
    .ag-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ag-hero__right {
        order: 1;
        width: 100%;
        margin: 22px auto 0;
    }

    .ag-hero__image {
        display: none;
    }
}

@media (max-width: 640px) {
    .ag-hero__video {
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 560px) {
    .ag-hero {
        padding: 42px 12px 36px;
    }

    .ag-hero__cta {
        font-size: 15px;
        padding: 11px 20px;
    }

    .ag-hero__note {
        font-size: 13.5px;
    }

    .ag-hero__right {
        margin: 0 -12px 18px;
        width: calc(100% + 24px);
    }

    .ag-hero__video {
        border-radius: 12px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
        aspect-ratio: 16 / 9;
        width: 100%;
    }
}

/* ===== STATS ===== */
.ag-stats {
    --accent: var(--ag-yellow);
    --text: var(--ag-ink);
    --ring: var(--ag-ring);
    background: #fff;
    padding: 32px 16px 56px;
}

.ag-stats__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.ag-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 900px) {
    .ag-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .ag-stats__grid {
        grid-template-columns: 1fr;
    }
}

.ag-stat {
  background: #fffaf4;
  border: 1px solid rgba(220, 152, 19, .35);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(220, 152, 19, .16);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.ag-stat__media {
    margin: 0 0 10px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f0e0c4;
}

.ag-stat__media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.ag-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(220, 152, 19, .22);
  border-color: var(--ag-green);
  background: #fffdf7;
}

.ag-stat:hover .ag-stat__media img {
  transform: scale(1.035);
  transition: transform .36s ease;
}

.ag-stat h3 {
    margin: 6px 0 4px;
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--accent);
    font-weight: 900;
}

.ag-stat p {
    margin: 0;
    color: #4a4b51;
    font-size: 15px;
}

.ag-stats__cta {
    display: block;
    width: max-content;
    margin: 20px auto;
    background: var(--ag-yellow);
    color: #1b1201;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(220, 152, 19, .3);
    border: 1px solid var(--ag-yellow);
}

.ag-stats__cta:hover {
    background: var(--ag-yellow-strong);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(220, 152, 19, .36);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== PAINPOINT SECTION ===== */
.ag-pain {
    background: #fff8ec;
    padding: 72px 16px 80px;
}

.ag-pain__inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.ag-pain__head {
    max-width: 760px;
    margin: 0 auto 48px;
}

.ag-pain__head h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    color: var(--ag-ink);
    margin-bottom: 12px;
}

.ag-pain__head p {
    color: var(--ag-muted);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
}

.ag-pain__grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 28px;
}

.ag-pain__card {
    background: #ffffff;
    border: 1px solid #f2d7a5;
    border-radius: 18px;
    padding: 22px 18px 26px;
    text-align: left;
    box-shadow: 0 10px 26px rgba(220, 152, 19, .16);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.ag-pain__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(220, 152, 19, .2);
    border-color: var(--ag-green);
    background: #fffdf7;
}

.ag-pain__card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--ag-yellow-strong);
    margin: 4px 0 6px;
}

.ag-pain__card p {
    font-size: 15px;
    color: #4a4b51;
    line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.ag-how {
    background: #ffffff;
    padding: 80px 16px 90px;
}

.ag-how__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.ag-how__head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.ag-how__head h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    color: var(--ag-ink);
    margin-bottom: 14px;
}

.ag-how__head p {
    color: var(--ag-muted);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
}

.ag-how__steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ag-step {
  display: block;
  max-width: 780px;
  margin: 0 auto;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.ag-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(44, 122, 89, .06);
  background: linear-gradient(180deg, rgba(234,247,255,0.35), rgba(255,255,255,0.35));
}

.ag-step--reverse {
    direction: ltr;
}

.ag-step__text h3 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 900;
    color: var(--ag-ink);
    margin: 0 0 10px;
}

.ag-step__text h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--ag-yellow);
  color: #1b1201;
  font-size: 13px;
  transition: background .22s ease, color .18s ease, transform .18s ease;
}

.ag-step:hover .ag-step__text h3 span {
  background: var(--ag-yellow);
}

/* completed step number appearance (green tick) for previous steps */
.ag-how__steps.active-step-1 .ag-step:nth-child(-n+1) .ag-step__text h3 span,
.ag-how__steps.active-step-2 .ag-step:nth-child(-n+2) .ag-step__text h3 span,
.ag-how__steps.active-step-3 .ag-step:nth-child(-n+3) .ag-step__text h3 span {
  background: var(--ag-green);
  color: transparent; /* hide original number */
  position: relative;
}

.ag-how__steps.active-step-1 .ag-step:nth-child(-n+1) .ag-step__text h3 span::after,
.ag-how__steps.active-step-2 .ag-step:nth-child(-n+2) .ag-step__text h3 span::after,
.ag-how__steps.active-step-3 .ag-step:nth-child(-n+3) .ag-step__text h3 span::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  transition: transform .18s ease, opacity .18s ease;
  opacity: 1;
}

.ag-step__text p {
    color: #4a4b51;
    font-size: 16px;
    line-height: 1.6;
}

.ag-how__proof {
    margin-top: 64px;
    text-align: center;
    background: #fff7e8;
    border: 1px solid #f3d29b;
    border-radius: 12px;
    padding: 16px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(220, 152, 19, .18);
}

.ag-how__proof strong {
    color: var(--ag-green);
}

.ag-proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--ag-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform .18s ease, background .18s ease;
}

/* ===== INTERJÚ ===== */
.ag-interview {
    --accent: var(--ag-yellow);
    --text: var(--ag-ink);
    --muted: var(--ag-muted);
    --ring: var(--ag-ring);
    background: #fffdf7;
    padding: 72px 16px 84px;
}

.ag-interview__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.ag-interview__head {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 36px;
}

.ag-interview__head h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
}

.ag-interview__head h2 span {
    color: var(--accent);
}

.ag-interview__head p {
    color: var(--muted);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
}

.ag-interview__videoCard {
    background: #fff;
    border: 1px solid var(--ring);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
    max-width: 800px;
    margin: 0 auto 20px;
}

.ag-interview__video {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ring);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.ag-interview__video::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.ag-interview__video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ag-interview__notes {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.ag-interview__cta {
    background: var(--ag-yellow);
    color: #1b1201;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(220, 152, 19, .26);
    border: 1px solid var(--ag-yellow);
}

.ag-interview__cta:hover {
    background: var(--ag-yellow-strong);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(220, 152, 19, .36);
}

/* ===== 7 OK – AKKORDION ===== */
.ag-benefits {
    background: #fffaf1;
    padding: 72px 16px 80px;
}

.ag-benefits__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.ag-benefits__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 32px;
}

.ag-benefits__header h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 900;
    color: var(--ag-ink);
}

.ag-benefits__header h2 span {
    color: var(--ag-yellow-strong);
}

.ag-benefits__list {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .06);
    border: 1px solid #f0ddb4;
    overflow: hidden;
}

.ag-benefitItem + .ag-benefitItem {
    border-top: 1px solid #f3e3c2;
}

.ag-benefitItem__toggle {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: #222328;
    transition: background .12s ease;
}

.ag-benefitItem__toggle:hover {
    background: #fff6e5;
}

.ag-benefitItem__num {
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--ag-yellow);
    color: #1b1201;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-benefitItem__title {
    flex: 1;
    font-weight: 800;
    font-size: 15px;
}

.ag-benefitItem__icon {
    font-size: 18px;
    font-weight: 700;
    color: var(--ag-green);
    margin-left: 4px;
}

.ag-benefitItem__panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: max-height .25s ease, padding-bottom .2s ease;
    background: #ffffff;
}

.ag-benefitItem__panel p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #35363c;
}

.ag-benefitItem.is-open .ag-benefitItem__panel {
    padding-top: 0;
    padding-bottom: 12px;
    max-height: 200px;
}

.ag-benefitItem.is-open .ag-benefitItem__icon {
    content: "−";
}

.ag-benefitItem--cta {
    background: #f9fef9;
}

.ag-benefitItem--cta .ag-benefitItem__toggle {
    cursor: default;
}

.ag-benefitItem--cta .ag-benefitItem__panel {
    max-height: 300px;
    padding-top: 0;
    padding-bottom: 16px;
}

.ag-benefitItem--cta p {
    margin-bottom: 10px;
}

.ag-benefitItem--cta a {
    display: inline-block;
    background: var(--ag-green);
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(44, 122, 89, .25);
}

/* ===== COMMUNITY ===== */
.ag-community {
    background: #ffffff;
    padding: 84px 16px 96px;
}

.ag-community__inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.ag-community__head h2 {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--ag-ink);
    margin: 0 0 12px;
}

.ag-community__head h2 span {
    color: var(--ag-yellow-strong);
}

.ag-community__head p {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: var(--ag-muted);
    line-height: 1.55;
}

.ag-community__media {
    position: relative;
    max-width: 880px;
    margin: 0 auto 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
    height: 80px;
}

.ag-community__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ag-community__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: linear-gradient(120deg, rgba(220, 152, 19, .55), rgba(44, 122, 89, .65));
    backdrop-filter: blur(4px);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
}

.ag-community__overlay div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ag-community__overlay strong {
    font-size: 32px;
    line-height: 1;
    color: #fff;
}

.ag-community__overlay span {
    font-weight: 600;
    font-size: 13px;
    color: #fdf4df;
}

.ag-community__cta {
    margin-top: 10px;
}

.ag-community__button {
    display: inline-block;
    background: var(--ag-yellow);
    color: #1b1201;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(220, 152, 19, .3);
    transition: transform .1s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.ag-community__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(220, 152, 19, .36);
    background: var(--ag-yellow-strong);
    color: #fff;
}

.ag-community__cta p {
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

@media(max-width: 700px) {
    .ag-community__overlay {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== ABOUT TEAM ===== */
#about-team {
    background:#fff;
    padding:56px 16px;
}

@media (max-width: 980px) {
    #about-team .about-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    #about-team .about-grid>div:first-child {
        max-width: 560px !important;
        margin: 0 auto !important;
    }

    #about-team .about-grid>div:last-child {
        text-align: left !important;
    }
}

/* ===== PRICING ===== */
.ag-pricing {
    background: #fff8ec;
    padding: 72px 16px 96px;
}

.ag-pricing__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.ag-pricing__head {
    text-align: center;
    margin-bottom: 48px;
}

.ag-pricing__head h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    color: var(--ag-ink);
    line-height: 1.2;
}

.ag-pricing__head h2 span {
    color: var(--ag-yellow-strong);
}

.ag-pricing__head p {
    max-width: 740px;
    margin: 8px auto 0;
    color: var(--ag-muted);
    font-size: 17px;
}

.ag-pricing__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
}

@media (max-width: 900px) {
    .ag-pricing__grid {
        grid-template-columns: 1fr;
    }
}

.ag-proof__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    color: var(--ag-ink);
}

.ag-proof__list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 6px;
    font-size: 15px;
    color: #2b2d32;
}

.ag-stats {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ag-stats li {
    font-size: 15px;
    color: #2e2f33;
}

.ag-stats strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--ag-yellow-strong);
}

.ag-pricebox {
    display: grid;
    gap: 18px;
}

.ag-price {
    border: 1px solid #f0ddb4;
    border-radius: 14px;
    padding: 22px 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.ag-price--highlight {
    border-color: var(--ag-green);
    box-shadow: 0 12px 32px rgba(44, 122, 89, .18);
}

.ag-price h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
    color: var(--ag-ink);
}

.ag-price__value {
    font-size: 28px;
    font-weight: 900;
    color: var(--ag-yellow-strong);
    margin: 0 0 4px;
}

.ag-price__desc {
    font-size: 14.5px;
    color: var(--ag-muted);
    margin: 0 0 10px;
}

.ag-price ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: 14.5px;
    color: #2e2f33;
}

.ag-pricing__cta {
    text-align: center;
    margin-top: 48px;
}

.ag-pricing__button {
    display: inline-block;
    background: var(--ag-yellow);
    color: #1b1201;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(220, 152, 19, .3);
    border: 1px solid var(--ag-yellow);
}

.ag-pricing__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(220, 152, 19, .36);
    background: var(--ag-yellow-strong);
    color: #fff;
}

/* ===== FOOTER ===== */
.ag-footer {
    --text: #e9eaee;
    --muted: #b6b8c1;
    --link: #ffffff;
    --ring: #262833;
    --bg-top: #181b24;
    --bg-bot: #12141b;
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bot) 100%);
    color: var(--text);
    border-top: 1px solid #20222c;
}

.ag-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px 16px 8px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .ag-footer__inner {
        grid-template-columns: 1fr;
        padding: 28px 12px 6px;
    }
}

.ag-footcol h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .2px;
}

.ag-footlist,
.ag-footnav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.ag-footlist li,
.ag-footnav li {
    font-size: 14px;
    color: var(--text);
}

.ag-footlist span {
    color: var(--muted);
    margin-right: 6px;
}

.ag-footnav a,
.ag-footlist a {
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
}

.ag-footnav a:hover,
.ag-footlist a:hover {
    border-color: rgba(255, 255, 255, .25);
}

.ag-legal {
    max-width: 1180px;
    margin: 6px auto 0;
    padding: 0 16px 16px;
}

.ag-legal p {
    margin: 0 0 8px;
    color: #a9acb6;
    font-size: 12.5px;
    line-height: 1.6;
}

.ag-footbar {
    border-top: 1px solid #20222c;
    padding: 12px 16px;
    text-align: center;
}

.ag-footbar p {
    margin: 0;
    font-size: 13px;
    color: #c9cbd3;
}
