:root {
    --bg-main: #050816;
    --bg-alt: #0b1020;
    --accent-green: #4cff88;
    --accent-blue: #2d8bff;
    --text-main: #f5f5f5;
    --text-muted: #9ca3af;
    --border-soft: #111827;
    --card-bg: #070b18;
    --danger: #f97373;

    /* HERO background effect vars */
    --hero-bg: var(--bg-main);
    --hero-bg-img: url("../img/nazivslike.png");
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        /* TOP AREA — pure black, no glow */
        linear-gradient(to bottom, #2f029b 0%, #050816 18%, transparent 40%),
        /* Soft green glow, pushed lower */
        radial-gradient(circle at 30% 60%, rgba(76, 255, 136, 0.14), transparent 70%),
        /* Blue glow – very low on page */
        radial-gradient(circle at 80% 85%, rgba(45, 139, 255, 0.18), transparent 70%),
        var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    font-family: 'Montserrat', system-ui, sans-serif;
}

.mainimg {
    max-width: 88%;
    display: block;
    width: 88%;
    margin: 0px auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.aja-rating-block {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* STARS */
.aja-stars {
    font-size: 25px;
    line-height: 1;
    color: #f5b301; /* zlatne zvezdice */
    display: flex;
}

/* AVATAR ROW */
.aja-avatars {
    display: flex;
    align-items: center;
}

/* SINGLE AVATAR */
.aja-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    margin-left: -10px; /* overlap efekat */
    background-color: #ddd;
}

/* da prvi nema negativni margin */
.aja-avatar:first-child {
    margin-left: 0;
}

.aja-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-wrapper {
    min-height: 100vh;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: #000;
    border-bottom: 1px solid rgba(17,24,39,0.85);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: 1rem;
}

.aja-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #f5f5f5;
    text-decoration: none;
}

.aja-logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at 20% 0%, rgba(76,255,136,0.25), transparent 60%);
    box-shadow: 0 0 14px rgba(76,255,136,0.6);
    animation: glow-soft 1.4s ease-in-out infinite alternate;
}

.aja-logo-icon span {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aja-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.aja-logo-main {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.aja-logo-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.header-cta span {
    display: none;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.7rem;
    border-radius: 12px;
    border: 1px solid rgba(76,255,136,0.3);
    background: radial-gradient(circle at top left, rgba(76,255,136,0.2), transparent 55%),
                linear-gradient(135deg, #16a34a, #22c55e);
    color: #041006;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow: 0 0 18px rgba(76,255,136,0.6);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 0 26px rgba(76,255,136,0.9);
    filter: brightness(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(45,139,255,0.7);
    background: radial-gradient(circle at top left, rgba(45,139,255,0.2), transparent 55%),
                rgba(1,23,42,0.9);
    color: var(--text-main);
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    animation: glow-pulse 1s ease-in-out infinite alternate;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn-secondary-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    height: 58px;
    border-radius: 8px;
    border: 1px solid rgba(45, 139, 255, 0.7);
    background: radial-gradient(circle at top left, #03185e, transparent 75%), rgba(125, 225, 228, 0.95);
    color: #fff7ed;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    line-height: 1;
    transform-origin: center center;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 18px rgba(15, 240, 221, 0.35), 0 0 12px rgba(9, 1, 116, 0.45) inset;
    transition: transform 0.3s ease, box-shadow 0.15s ease, border-color 0.3s ease;
    text-shadow: 1px 1px 5px #111;
    will-change: transform;
    width: 100%;
        animation: glow-pulse3 1s ease-in-out infinite alternate;
}

.btn-secondary-2:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.35), 0 0 12px rgba(255, 200, 100, 0.25) inset;
}

/* HERO */

.hero-topline {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color:  #b8d8fd;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
}

.cta-foam {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff7b00;
    text-align: center;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 20px;
}

.cta-foam span { color:#fff; }

.pulse-foam {
    animation: foamPulse 1.8s ease-in-out infinite;
}

@keyframes foamPulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.03); }
    100% { opacity: 1; transform: scale(1); }
}

h2 { font-size: 26px; }

.hero-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 1.1rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-top: 35px;
   
}

.hero-title span.highlight {
    -webkit-background-clip: text;
    background-clip: text;
    color: #f79843;
    font-size: 50px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.85);
    font-weight: 700;
    text-shadow: 0 -2px 6px var(--light-glow);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    
}

.hero-subtitle {
    font-size: 18px;
    color: #fff;
    max-width: 32rem;
}

.hero-bullets {
    margin: 1.6rem 0 1.1rem;
    padding-left: 0;
    list-style: none;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 18px;
    color: rgba(218, 152, 115, 0.95);
}

.hero-bullets li::before {
    content: "";
    margin-top: 0.45rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent-green), var(--accent-blue));
    box-shadow: 0 0 10px rgba(76,255,136,0.8);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.6rem;
    justify-content: center;
}

.hero-secure {
    font-size: 0.8rem;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.hero-secure::before {
    content: "✓";
    color: var(--accent-green);
    font-size: 0.9rem;
}

.hero-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-right {
    display: flex;
    flex-direction: column;
    color: #16a34a;
}

.video-frame {
    position: relative;
    border-radius: 18px;
    padding: 0.4rem;
}

.old-price {
    text-decoration: line-through;
    color: #818181!important;
    margin-left: 8px;
    font-weight: 600;
}

.microcopy { font-size: 12px; color: #ccc; padding-left: 20px; }

.deal-timer {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    align-items: center;
    width: 100%;
}

.deal-timer-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffe1c4;
    text-align: center;
}

.deal-timer-label span {
    color: #ffb347;
    font-weight: 800;
}

.deal-countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
}

.deal-countdown .time-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 46px;
}

.deal-countdown .time-part span {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.deal-countdown .time-part small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cbd5f5;
}

.video-inner {
    border-radius: 14px;
    overflow: hidden;
    background: #020617;
    border: 1px solid rgba(148,163,184,0.35);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.video-caption {
    color: #fff;
    margin-top: 0.5rem;
    text-align: center;
}

.product-mockup {
    margin-top: 0.75rem;
    align-self: flex-start;
    border-radius: 18px;
    padding: 0.6rem;
    background: radial-gradient(circle at top, rgba(148,163,184,0.18), transparent 65%);
    border: 1px solid rgba(148,163,184,0.3);
    box-shadow: 0 0 18px rgba(15,23,42,0.8);
    animation: subtle-pulse 4.5s ease-in-out infinite alternate;
}

.product-mockup img {
    border-radius: 14px;
}

.product-label {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* Sections */
section {
    padding: 2.5rem 0;
}

p { font-size: 18px; }

.redfreze { color: rgb(240, 50, 50); }

.section-eyebrow {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.section-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 26px;
    margin-bottom: 1.1rem;
}

.section-lead {
    max-width: 40rem;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
}

.section-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

.card {
    background: linear-gradient(145deg, rgba(15,23,42,0.96), rgba(15,23,42,0.85));
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.95);
    padding: 10px;
    box-shadow: 0 24px 60px rgba(15,23,42,0.9);
}

.card.soft {
    background: radial-gradient(circle at top left, rgba(76,255,136,0.08), transparent 60%),
                radial-gradient(circle at bottom right, rgba(45,139,255,0.08), transparent 60%),
                rgba(15,23,42,0.96);
    border: 1px solid rgba(45, 139, 255, 0.7);
}

.card.glow-border {
    position: relative;
    border: 1px solid rgba(76,255,136,0.5);
    box-shadow: 0 0 22px rgba(34,197,94,0.4), 0 0 44px rgba(37,99,235,0.35);
}

.card.glow-border::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(76,255,136,0.9), rgba(45,139,255,0.9));
    opacity: 0.4;
    z-index: -1;
    filter: blur(12px);
}

.card-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
}

.muted {
    color: var(--text-muted);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent-green), var(--accent-blue));
    box-shadow: 0 0 10px rgba(76,255,136,0.7);
}

.list-block {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 1rem 0;
}

.list-item {
    position: relative;
    line-height: 1.6;
    font-size: 18px;
}


p { font-size: 1.2rem;}


ul li { font-size: 18px; }

.cardimage1 { max-width: 100%; border-radius: 10px; }
.center { text-align: center; width: 100%; margin-left: auto; margin-right: auto; justify-content: center; }

/* GRID WRAPPER */
.inside-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* CHAPTER CARD */
.chapter-card {
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, #000 0%, rgb(1 23 42 / 95%) 40%, rgba(0, 0, 0, 0.95) 100%);
    border: 1px solid rgba(45, 139, 255, 0.15);
    box-shadow: 0 0 18px rgba(0, 140, 255, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
 animation: glow-pulse 1s ease-in-out infinite alternate;
}

/* HOVER EFEKAT */
.chapter-card:hover {
    transform: translateY(-4px);

}

/* Naslov */
.chapter-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

/* Tekst */
.chapter-card .muted {
    color: #c3d5e3;
    line-height: 1.5;
}

.chapter-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0.75rem 0 1rem;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(0, 140, 255, 0.25);
}

.minitext { font-size: 12px; padding-left: 10px; color:#ccc; }

.nomute { color:#008007!important; }

.two-column-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.25rem 1.8rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Pricing */
.pricing-section {
    padding: 3.75rem 0;
}

.pricing-grid {
    align-items: center;
}

.price-card {
    background: linear-gradient(135deg, #000 0%, rgb(1 23 42 / 95%) 40%, rgba(0, 0, 0, 0.95) 100%);
    border-radius: 22px;
    padding: 1.8rem 1.9rem;
    border: 1px solid rgba(76,255,136,0.5);
    box-shadow: 0 0 24px rgba(76,255,136,0.6), 0 0 36px rgba(37,99,235,0.55);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(76,255,136,0.22), transparent 70%);
    opacity: 0.9;
    z-index: -1;
}

.price-tagline {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-align: center;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
    align-items: center;
    justify-items: center;
    justify-content: center;
    color: #b2d1f7;
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', system-ui, sans-serif;
}

.price-amount {
    font-size: 2.3rem;
    font-weight: 800;
    font-family: 'Montserrat', system-ui, sans-serif;
    color: #cee0fc;
}

.price-note {
    font-size: 0.8rem;
    color: #00a17c;
    text-align: center;
}

.price-compare {
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
    text-align: center;
}

.price-benefits {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.1rem;
}

.price-benefits li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 1.2rem;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.max-btn {
    max-width: 60%;
    width: 60%;
    margin: 0px auto!important;
}

.price-benefits li::before {
    content: "✔";
    color: #00a17c;
    margin-top: 0.15rem;
    font-size: 0.85rem;
}

.guarantee-tag {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: #00a17c;
    text-align: center;
}

/* FAQ */
.faq-grid {
    width: 100%;
}

.faq-item {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(65, 92, 131, 0.9);
}

.faq-q {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.faq-a {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    padding: 2.5rem 0 2rem;
    border-top: 1px solid rgba(15,23,42,0.95);
    background: radial-gradient(circle at top, rgba(15,23,42,0.9), rgba(5,8,22,1));
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-green);
}

/* Animations */
@keyframes glow-soft {
    0% { box-shadow: 0 0 8px rgba(76,255,136,0.5); }
    100% { box-shadow: 0 0 20px rgba(76,255,136,0.9); }
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 16px rgba(8, 151, 56, 0.6), 0 0 50px rgba(45,139,255,0.6); }
    100% { box-shadow: 0 0 16px rgba(2, 114, 39, 0.75), 0 0 80px rgba(45,139,255,0.95); }
}

@keyframes subtle-pulse {
    0% { box-shadow: 0 0 14px rgba(15,23,42,0.8); }
    100% { box-shadow: 0 0 16px rgba(1, 148, 33, 0.7); }
}


@keyframes glow-pulse3 {
    0% { box-shadow: 0 0 16px rgba(5, 86, 207, 0.6), 0 0 10px rgba(118, 174, 243, 0.6); }
    100% { box-shadow: 0 0 16px rgba(6, 0, 87, 0.75), 0 0 20px rgba(126, 183, 248, 0.95); }
}

/* Responsive */
@media (max-width: 960px) {
    .hero-grid,
    .section-grid-2,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 2.6rem;
    }

    .header-inner {
        padding: 0.6rem 0;
    }

    .header-cta span {
        display: inline;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }
}
/* HERO – background image OVER existing body background */
.hero{
  position: relative;

  background-image:
    /* bottom fade u postojeći bg */
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 65%,
      var(--bg-main) 100%
    ),
    /* top fade iz bg */
    linear-gradient(
      180deg,
      var(--bg-main) 0%,
      rgba(0,0,0,0) 35%
    ),
    /* HERO IMAGE */
    url("../img/awsome2.jpg");

  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* LEGAL PAGES */
.legal {
  padding: 3.25rem 0 3.5rem;
}

.legal .container {
  max-width: 960px;
}

.legal-card {
  background: linear-gradient(145deg, rgba(15,23,42,0.96), rgba(15,23,42,0.85));
  border-radius: 18px;
  border: 1px solid rgba(45, 139, 255, 0.25);
  padding: 1.75rem 1.75rem;
  box-shadow: 0 24px 60px rgba(15,23,42,0.9);
}

.legal-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 28px;
  margin: 0 0 0.5rem;
  color: #eaf2ff;
}

.legal-updated {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.legal-card h2 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 18px;
  margin: 1.35rem 0 0.5rem;
  color: #d9e6ff;
}

.legal-card p,
.legal-card li {
  color: #cbd5f5;
  font-size: 16px;
}

.legal-card a {
  text-decoration: underline;
}

.legal-list {
  padding-left: 1.1rem;
}

@media (max-width: 768px) {
    .aja-logo-main {
        font-size: 1.3rem!important;
        letter-spacing: 0.12em;
        text-align: left;
    }

.btn-secondary-2 {
    font-size: 20px;
    padding: 10px;
}


.btn-secondary {
    font-size: 0.9rem!important;
    padding: 10px;
    width: 100%!important;
    display: none;
}
.aja-logo-tagline { font-size: 0.8rem;}

 .header-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 0.7rem 0;
        text-align: center;
    }

.hero-topline {
    font-size: 14px;
}

.hero-title span.highlight  {
    font-size: 40px!important;

}

.container {
       padding: 0.8rem!important;
}

.hero {
        padding-top: 1rem;
    }

    .hero-title  {
        padding-top: 20px!important;
    }
    .override {
    max-width: 100%!important;
    width: 100%!important;
    padding: 10px!important;
    font-size: 16px!important;
    letter-spacing: 1px!important;
    
}


}