/* ==========================================================================
   Sremuš Edukacija — Landing Page
   Premium opt-in design, matching Coming Soon visual quality
   ========================================================================== */

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.se-announcement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #005F02;
    padding: 0.625rem 0.75rem;
    text-align: center;
}

.se-announcement p {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.02em;
}

.se-announcement__icon {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 0.25rem;
    opacity: 0.7;
}

.se-announcement a {
    color: #F2E3BB;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.se-announcement a:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   REUSABLE COMPONENTS
   ========================================================================== */

.se-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.se-label--light {
    color: var(--color-light);
}

.se-pill {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.5em 1.5em;
    border-radius: 100px;
    margin-bottom: var(--spacing-md);
}

.se-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 1em 2.5em;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    text-align: center;
}

.se-btn--accent {
    background-color: var(--color-light);
    color: var(--color-dark);
    border-color: var(--color-light);
}

.se-btn--accent:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 227, 187, 0.4);
}

.se-btn--lg {
    font-size: 0.9375rem;
    padding: 1.125em 3em;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.se-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.se-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.se-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.se-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 40, 2, 0.78) 0%, rgba(0, 60, 5, 0.62) 40%, rgba(0, 95, 2, 0.88) 100%),
        radial-gradient(ellipse at 30% 70%, rgba(192, 184, 122, 0.1) 0%, transparent 50%);
}

/* Decorative leaves */
.se-hero__decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.se-leaf {
    position: absolute;
}

.se-leaf--1 {
    top: 15%;
    left: 8%;
    animation: se-drift-1 18s ease-in-out infinite;
}

.se-leaf--2 {
    top: 60%;
    right: 10%;
    animation: se-drift-2 22s ease-in-out infinite;
}

.se-leaf--3 {
    bottom: 20%;
    left: 15%;
    animation: se-drift-3 25s ease-in-out infinite;
}

@keyframes se-drift-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, 20px) rotate(10deg); }
    50% { transform: translate(-10px, 35px) rotate(-5deg); }
    75% { transform: translate(20px, 10px) rotate(15deg); }
}

@keyframes se-drift-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -15px) rotate(-12deg); }
    66% { transform: translate(10px, -25px) rotate(8deg); }
}

@keyframes se-drift-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(25px, -20px) rotate(20deg); }
}

.se-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--spacing-2xl) 0;
}

.se-hero__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.se-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.se-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    max-width: 540px;
    margin: 0 auto var(--spacing-md);
}

/* Hero lead text */
.se-hero__lead {
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-sm);
}

/* Pill items — like coming-soon ticker items but flowing centered */
.se-hero__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.se-hero__pill-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    padding: 0.5rem 1.1rem 0.5rem 0.7rem;
    transition: background var(--transition), border-color var(--transition);
}

.se-hero__pill-item:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
}

.se-hero__pill-item::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23005F02' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

.se-hero__note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}

.se-hero__note strong {
    color: var(--color-light);
}

.se-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.35);
    animation: se-float 2.5s ease-in-out infinite;
}

@keyframes se-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.se-trust-bar {
    background: var(--color-primary);
    padding: var(--spacing-md) 0;
}

.se-trust-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.se-trust-bar__item {
    text-align: center;
}

.se-trust-bar__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-light);
    line-height: 1;
}

.se-trust-bar__label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    display: block;
}

.se-trust-bar__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   SPLIT LAYOUT (reusable)
   ========================================================================== */

.se-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.se-split--reverse .se-split__media {
    order: 2;
}

.se-split--reverse .se-split__content {
    order: 1;
}

.se-split__img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.se-split__img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

.se-split__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.se-split__img-wrapper--portrait img {
    aspect-ratio: 3 / 4;
    object-position: top center;
}

.se-split__content h2 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.se-split__content > p {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

/* ---- Feature Mini items (like cs-feature-mini) ---- */

.se-features-mini {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.se-feature-mini {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.se-feature-mini__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 95, 2, 0.08), rgba(66, 122, 67, 0.12));
    color: var(--color-primary);
}

.se-feature-mini div strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
}

.se-feature-mini div span {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   PROBLEM — SPLIT SECTION
   ========================================================================== */

.se-problem {
    padding: var(--spacing-2xl) 0;
    background: var(--color-off-white);
}

/* ==========================================================================
   PROBLEM HIGHLIGHT
   ========================================================================== */

.se-problem-highlight {
    padding: 0 0 var(--spacing-2xl);
    background: var(--color-off-white);
}

.se-problem-highlight__card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg) var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    position: relative;
}

.se-problem-highlight__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 6px 20px rgba(0, 95, 2, 0.25);
}

.se-problem-highlight__card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.se-problem-highlight__card > p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.se-problem-highlight__conclusion {
    margin-top: 0.5rem;
}

.se-problem-highlight__conclusion strong {
    font-size: 1.125rem;
    color: var(--color-primary);
}

/* ==========================================================================
   LEKCIJE
   ========================================================================== */

.se-lessons {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
}

.se-lessons__header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.se-lessons__header h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.se-lessons__header p {
    font-size: 1.0625rem;
    color: var(--color-text-light);
}

.se-lessons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

/* Bottom row: 2 cards centered */
.se-lessons__grid .se-lesson-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    margin-right: 0;
    width: 100%;
}

.se-lesson-card {
    position: relative;
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition);
}

.se-lesson-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.se-lesson-card__num {
    position: absolute;
    top: -1px;
    right: -1px;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 0.375em 1em;
    border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}

.se-lesson-card__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 95, 2, 0.08), rgba(66, 122, 67, 0.12));
    color: var(--color-primary);
    margin-bottom: 0.875rem;
}

.se-lesson-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.se-lesson-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ==========================================================================
   AUTOR
   ========================================================================== */

.se-author {
    padding: var(--spacing-2xl) 0;
    background: var(--color-off-white);
}

.se-author__goal {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: linear-gradient(135deg, rgba(0, 95, 2, 0.04), rgba(66, 122, 67, 0.06));
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) 1.25rem;
    margin-top: var(--spacing-sm);
}

.se-author__goal-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    margin-top: 0.25rem;
}

.se-author__goal p {
    font-size: 0.9375rem;
    color: var(--color-dark);
    margin-bottom: 0.125rem;
}

.se-author__goal p:last-child {
    margin-bottom: 0;
}

.se-author__goal strong {
    color: var(--color-primary);
}

/* ==========================================================================
   URGENCY — FULL BLEED
   ========================================================================== */

.se-urgency {
    position: relative;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
}

.se-urgency__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.se-urgency__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.se-urgency__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(0, 40, 2, 0.9) 0%, rgba(0, 95, 2, 0.92) 100%);
}

.se-urgency__content {
    position: relative;
    z-index: 2;
}

.se-urgency h2 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.se-urgency p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.se-urgency strong {
    color: var(--color-light);
}

.se-urgency .se-btn {
    margin-top: var(--spacing-sm);
}

/* ==========================================================================
   SIGNUP — FULL BLEED SA FORMOM
   ========================================================================== */

.se-signup {
    position: relative;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
}

.se-signup__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.se-signup__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.se-signup__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(0, 40, 2, 0.88) 0%, rgba(0, 95, 2, 0.92) 100%);
}

.se-signup__content {
    position: relative;
    z-index: 2;
}

.se-signup h2 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.se-signup__content > p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--spacing-md);
}

.se-signup__form-wrap {
    max-width: 440px;
    margin: 0 auto;
}

.se-signup__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.se-signup__field input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    transition: all var(--transition);
}

.se-signup__field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.se-signup__field input:focus {
    outline: none;
    border-color: var(--color-light);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(242, 227, 187, 0.2);
}

.se-signup__submit {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-dark);
    background: var(--color-light);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.se-signup__submit:hover {
    background: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(242, 227, 187, 0.4);
}

.se-signup__privacy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.se-faq {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
}

.se-faq__header {
    margin-bottom: var(--spacing-xl);
}

.se-faq__header h2 {
    color: var(--color-primary);
    margin-bottom: 0;
}

.se-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.se-faq__item {
    background: var(--color-off-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.se-faq__item[open] {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.se-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.se-faq__question::-webkit-details-marker {
    display: none;
}

.se-faq__question::after {
    content: '';
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-left: 1rem;
    border-right: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    transform: rotate(45deg);
    transition: transform var(--transition);
}

.se-faq__item[open] .se-faq__question::after {
    transform: rotate(-135deg);
}

.se-faq__question:hover {
    color: var(--color-primary);
}

.se-faq__answer {
    padding: 0 1.5rem 1.25rem;
}

.se-faq__answer p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ==========================================================================
   FINAL CTA — FULL BLEED
   ========================================================================== */

.se-final-cta {
    position: relative;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
}

.se-final-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.se-final-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.se-final-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(0, 40, 2, 0.88) 0%, rgba(0, 95, 2, 0.92) 100%);
}

.se-final-cta__content {
    position: relative;
    z-index: 2;
}

.se-final-cta h2 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.se-final-cta p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.se-footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background: #0a1f0b;
    color: rgba(255, 255, 255, 0.6);
}

.se-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--spacing-md);
}

.se-logo {
    margin-bottom: var(--spacing-sm);
}

.se-logo__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1;
}

.se-logo__tagline {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-top: 0.25rem;
}

.se-footer__brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.se-footer__links h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.se-footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.se-footer__links li {
    font-size: 0.875rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.5);
}

.se-footer__bottom {
    text-align: center;
}

.se-footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.se-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.se-reveal.se-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger lesson cards */
.se-lesson-card.se-reveal:nth-child(2) { transition-delay: 0.1s; }
.se-lesson-card.se-reveal:nth-child(3) { transition-delay: 0.2s; }
.se-lesson-card.se-reveal:nth-child(4) { transition-delay: 0.3s; }
.se-lesson-card.se-reveal:nth-child(5) { transition-delay: 0.4s; }

/* Stagger FAQ items */
.se-faq__item.se-reveal:nth-child(2) { transition-delay: 0.1s; }
.se-faq__item.se-reveal:nth-child(3) { transition-delay: 0.15s; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .se-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .se-leaf,
    .se-hero__scroll {
        animation: none;
    }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .se-split {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .se-split--reverse .se-split__media,
    .se-split--reverse .se-split__content {
        order: unset;
    }

    .se-lessons__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .se-lessons__grid .se-lesson-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 380px;
        margin: 0 auto;
    }

    .se-footer__inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sremus-edukacija :root {
        --spacing-2xl: 4rem;
        --spacing-xl: 3rem;
    }

    .se-hero {
        min-height: auto;
    }

    .se-hero__content {
        padding: 6rem 0 4rem;
    }

    .se-hero__title {
        font-size: 2.5rem;
    }

    .se-hero__subtitle br {
        display: none;
    }

    .se-hero__decor {
        display: none;
    }

    .se-btn--lg {
        display: block;
        text-align: center;
    }

    .se-trust-bar__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }

    .se-trust-bar__divider {
        display: none;
    }

    .se-trust-bar__number {
        font-size: 1.375rem;
    }

    .se-lessons__grid {
        grid-template-columns: 1fr;
    }

    .se-lessons__grid .se-lesson-card:nth-child(5) {
        max-width: none;
    }

    .se-problem-highlight__card {
        padding: var(--spacing-md);
    }

    .se-faq__question {
        padding: 1rem 1.125rem;
        font-size: 0.875rem;
    }

    .se-faq__answer {
        padding: 0 1.125rem 1rem;
    }

    .se-footer__inner {
        text-align: center;
    }

    .se-footer__bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .se-hero__title {
        font-size: 2rem;
    }

    .se-hero__title br {
        display: none;
    }

    .se-hero__pill-item {
        white-space: normal;
        text-align: left;
    }

    .se-trust-bar__item {
        min-width: 80px;
    }
}
