/* ============================================
   BitSage Technology — Promotional Website Styles
   Brand Palette: Teal · Cream · Orange · Steel Blue
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* === PALETA PRINCIPAL BITSAGE === */
    --primary:       #1A4D54;   /* Teal Oscuro — navbar, footer, H1/H2 */
    --primary-light: #6299A4;   /* Azul Acero — hover, bordes, secciones apoyo */
    --primary-dark:  #0F2E33;   /* Teal muy oscuro — active states */
    --primary-50:    rgba(26, 77, 84, 0.07);
    --primary-100:   rgba(26, 77, 84, 0.14);

    --bg-cream:  #F1ECE1;       /* Fondo general del sitio */
    --accent:    #6299A4;       /* Azul Acero — botones secundarios */
    --accent-dark: #4A7E8E;     /* Hover del azul acero */
    --accent-50: rgba(98, 153, 164, 0.08);

    --secondary: #6299A4;       /* Azul Acero */
    --text:      #333F48;       /* Párrafos y texto secundario */

    /* Escala de grises tonal (cálida, acorde a la crema) */
    --gray-50:  #F9F7F3;
    --gray-100: #F1ECE1;
    --gray-200: #E4DDD3;
    --gray-300: #C8BDB0;
    --gray-400: #9B9187;
    --gray-500: #7A7068;
    --gray-600: #5A524A;
    --gray-700: #333F48;
    --gray-800: #1F2B32;
    --gray-900: #0F1A1F;

    --white: #FFFFFF;
    --black: #000000;

    --success: #15A36A;
    --warning: #D97706;
    --danger:  #DC2626;

    --shadow-sm: 0 1px 2px rgba(15, 26, 31, 0.06);
    --shadow:    0 1px 3px rgba(15, 26, 31, 0.1),  0 1px 2px rgba(15, 26, 31, 0.06);
    --shadow-md: 0 4px 6px rgba(15, 26, 31, 0.08), 0 2px 4px rgba(15, 26, 31, 0.05);
    --shadow-lg: 0 10px 15px rgba(15, 26, 31, 0.12), 0 4px 6px rgba(15, 26, 31, 0.06);
    --shadow-xl: 0 20px 40px rgba(15, 26, 31, 0.14), 0 8px 16px rgba(15, 26, 31, 0.08);

    --radius-sm: 6px;
    --radius:    10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Utilities ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid var(--primary-100);
}

.section-header__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header__subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

/* btn--primary = Teal (navegación, informativo) */
.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 77, 84, 0.3);
}

/* btn--accent = Azul acero (botones secundarios) */
.btn--accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    font-weight: 700;
}

.btn--accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(98, 153, 164, 0.35);
}

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

.btn--outline:hover {
    border-color: var(--primary);
    background: var(--primary-50);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--sm { padding: 8px 20px; font-size: 0.85rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}

.header--scrolled {
    box-shadow: 0 4px 20px rgba(15, 26, 31, 0.3);
    background: var(--primary-dark);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 300;
    flex-shrink: 0;
}

.header__logo strong {
    font-weight: 800;
    color: var(--white);
}

.header__logo-icon {
    display: none;
}

.header__nav-list {
    display: flex;
    gap: 8px;
}

.header__nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Search */
.header__search {
    position: relative;
}

.header__search-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.header__search-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.header__search-box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 4px 8px;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}

.header__search-box.active {
    opacity: 1;
    visibility: visible;
}

.header__search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray-800);
}

.header__search-close {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.header__search-close:hover {
    background: var(--gray-200);
}

/* Mobile menu toggle */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
}

.header__menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary) 45%,
        #1E5E6B 75%,
        #24697A 100%
    );
    overflow: hidden;
}

/* Textura sutil de fondo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero__badge i {
    color: var(--warning);
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero__title-highlight {
    background: linear-gradient(135deg, #F1ECE1, #6299A4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* Hero mockup */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__mockup {
    position: relative;
    z-index: 2;
}

.hero__mockup-screen {
    width: 480px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.hero__mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot--red { background: #FF5F57; }
.dot--yellow { background: #FEBC2E; }
.dot--green { background: #28C840; }

.hero__mockup-title {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
}

.hero__mockup-body {
    display: flex;
    min-height: 280px;
}

.hero__mockup-sidebar {
    width: 56px;
    background: var(--gray-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 8px;
}

.hero__mockup-nav-item {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.hero__mockup-nav-item.active {
    background: var(--primary);
    color: var(--white);
}

.hero__mockup-content {
    flex: 1;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
}

.hero__mockup-card {
    height: 70px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    animation: cardPulse 3s ease-in-out infinite;
}

.hero__mockup-card:nth-child(2) {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    animation-delay: 0.5s;
}

.hero__mockup-card--wide {
    grid-column: span 2;
    height: 90px;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    animation-delay: 1s;
}

@keyframes cardPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Floating badges */
.hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
}

.hero__float i {
    font-size: 1.2rem;
}

.hero__float--1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.hero__float--1 i { color: var(--primary); }

.hero__float--2 {
    bottom: 25%;
    left: -20px;
    animation-delay: 2s;
}

.hero__float--2 i { color: var(--success); }

.hero__float--3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 4s;
}

.hero__float--3 i { color: var(--warning); }

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

/* Hero wave */
.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   HERO LOGO / OWL ANIMATIONS
   ============================================ */

/* Flotado natural del logo-card */
@keyframes owlFloat {
    0%   { transform: translateY(0px) rotate(0deg); }
    25%  { transform: translateY(-6px) rotate(-0.8deg); }
    50%  { transform: translateY(-10px) rotate(0deg); }
    75%  { transform: translateY(-5px) rotate(0.8deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Pulso de glow teal alrededor del contenedor */
@keyframes owlGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(26, 77, 84, 0.25),
            0 0 60px rgba(26, 77, 84, 0.1),
            var(--shadow-xl);
    }
    50% {
        box-shadow:
            0 0 50px rgba(98, 153, 164, 0.5),
            0 0 100px rgba(26, 77, 84, 0.25),
            var(--shadow-xl);
    }
}

/* Ring pulse — aro que se expande y desvanece */
@keyframes ringPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Parpadeo suave del video del logo */
@keyframes owlBlink {
    0%, 94%, 100%  { opacity: 1; }
    96%            { opacity: 0.15; }
    98%            { opacity: 1; }
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 100px 0;
    background: var(--bg-cream);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 12px 40px rgba(26, 77, 84, 0.12);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.feature-card__icon--blue   { background: rgba(26,77,84,0.08);  color: #1A4D54; }
.feature-card__icon--green  { background: rgba(21,163,106,0.1);  color: #15A36A; }
.feature-card__icon--purple { background: rgba(98,153,164,0.12); color: #4A7E8E; }
.feature-card__icon--orange { background: rgba(168, 122, 61, 0.12); color: #8B6230; }
.feature-card__icon--red    { background: rgba(220,38,38,0.1);   color: #DC2626; }
.feature-card__icon--teal   { background: rgba(26,77,84,0.12);   color: #1E6E7A; }

.feature-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card__desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-card__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.feature-card__list li i {
    color: var(--success);
    font-size: 0.75rem;
}

.feature-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap var(--transition);
}

.feature-card__cta:hover {
    gap: 10px;
}

.feature-card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(180deg, #ffffff 0%, var(--primary-50) 100%);
}

.features--alt {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--bg-cream) 100%);
}

.features--alt .features__grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .features--alt .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features--alt .features__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--gray-50) 100%);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(26, 77, 84, 0.35);
}

.step__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.step__desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    max-width: 220px;
    line-height: 1.5;
}

.step__connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin-bottom: 60px;
    flex-shrink: 0;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 100px 0;
    background: var(--bg-cream);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.04);
}

.pricing-card--featured:hover {
    transform: scale(1.06);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.pricing-card__desc {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.pricing-card__price {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card__currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-600);
    vertical-align: top;
    line-height: 1.8;
}

.pricing-card__amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
}

.pricing-card__period {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

.pricing-card__price--quote {
    padding: 12px 0 28px;
}

.pricing-card__quote {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.pricing-card__features li i {
    font-size: 0.8rem;
}

.pricing-card__features li .fa-check {
    color: var(--success);
}

.pricing-card__features li .fa-times {
    color: var(--gray-300);
}

.pricing-card__feature--disabled {
    opacity: 0.5;
}

/* ============================================
   NEWS
   ============================================ */
.news {
    padding: 100px 0;
    background: var(--gray-50);
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.news-card__img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-light);
}

.news-card:nth-child(2) .news-card__img-placeholder {
    background: linear-gradient(135deg, #FAF5FF, #F3E8FF);
    color: #C084FC;
}

.news-card:nth-child(3) .news-card__img-placeholder {
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    color: #4ADE80;
}

.news-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 14px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.news-card__body {
    padding: 24px;
}

.news-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.news-card__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.news-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card__excerpt {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
}

.news-card__link:hover {
    gap: 10px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--warning);
    font-size: 0.9rem;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-900);
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--bg-cream);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.contact__info-card:hover {
    box-shadow: var(--shadow-md);
}

.contact__info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact__info-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.contact__info-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
}

.contact__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact__social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all var(--transition);
}

.contact__social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Contact form */
.contact__form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__form-group {
    margin-bottom: 20px;
}

.contact__form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.contact__form-group input,
.contact__form-group select,
.contact__form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.contact__form-group input:focus,
.contact__form-group select:focus,
.contact__form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 84, 0.12);
}

.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder {
    color: var(--gray-400);
}

.contact__form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 16px;
}

.footer__logo strong {
    font-weight: 800;
    color: var(--white);
}

.footer__logo .header__logo-icon {
    background: var(--primary-light);
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
    color: rgba(255,255,255,0.55);
}

.footer__links h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}

.footer__links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 0.85rem;
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer__bottom-links a:hover {
    color: var(--white);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(26, 77, 84, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero__subtitle {
        margin: 0 auto 32px;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__mockup-screen {
        width: 100%;
        max-width: 420px;
    }

    .features__grid,
    .pricing__grid,
    .news__grid,
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card--featured {
        transform: scale(1);
    }

    .contact__inner {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--primary);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 20px 24px;
        box-shadow: 0 8px 24px rgba(15, 26, 31, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all var(--transition);
    }

    .header__nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header__nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .header__nav-link {
        display: block;
        padding: 12px 16px;
    }

    .header__menu-toggle {
        display: flex;
    }

    .header__actions .btn {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__float {
        display: none;
    }

    .features__grid,
    .pricing__grid,
    .news__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .step__connector {
        width: 2px;
        height: 40px;
        margin-bottom: 0;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .contact__form {
        padding: 24px;
    }
}

/* ============================================
   LOGO IMG (header/footer/hero)
   ============================================ */
.header__logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer__logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.hero__logo-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    min-height: 380px;
    overflow: visible;
    animation: owlFloat 7s ease-in-out infinite, owlGlow 4s ease-in-out infinite;
}

/* Aro pulsante alrededor del logo */
.hero__logo-card::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius-xl) + 8px);
    border: 2px solid rgba(98, 153, 164, 0.5);
    animation: ringPulse 3s ease-out infinite;
}

.hero__logo-card::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: calc(var(--radius-xl) + 20px);
    border: 1px solid rgba(98, 153, 164, 0.25);
    animation: ringPulse 3s ease-out infinite 1s;
}

.hero__logo-video {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    object-fit: contain;
    animation: owlBlink 6s ease-in-out infinite;
}

.hero__logo-img {
    max-width: 260px;
    width: 100%;
    height: auto;
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 60%, #1E5E6B 100%);
    text-align: center;
    color: var(--white);
}

.page-hero__tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.page-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-hero__desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.page-hero--product {
    text-align: left;
}

.page-hero--product .page-hero__desc {
    margin: 0;
}

.page-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color var(--transition);
}

.page-hero__back:hover {
    color: var(--white);
}

.page-hero__product {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
}

.page-hero__icon {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    flex-shrink: 0;
}

.page-hero__cta {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-hero { padding: 110px 0 50px; }
    .page-hero__title { font-size: 1.9rem; }
    .page-hero__product { grid-template-columns: 1fr; gap: 20px; }
    .page-hero__icon { width: 72px; height: 72px; font-size: 1.9rem; }
}

/* ============================================
   PRODUCT CARDS (productos.html)
   ============================================ */
.features__grid--4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .features__grid--4 {
        grid-template-columns: 1fr;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.product-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
}

.product-card__icon--blue { background: #EEF2FF; color: #4F46E5; }
.product-card__icon--green { background: #F0FDF4; color: #16A34A; }
.product-card__icon--purple { background: #FAF5FF; color: #9333EA; }
.product-card__icon--orange { background: #FFF7ED; color: #EA580C; }

.product-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.product-card__desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-card__bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.product-card__bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.product-card__bullets li i {
    color: var(--success);
    font-size: 0.8rem;
}

.product-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
}

.product-card:hover .product-card__cta {
    gap: 12px;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-band__title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.cta-band__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
}

.cta-band .btn--primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-band .btn--primary:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .cta-band__title { font-size: 1.4rem; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
body {
    opacity: 0;
    animation: pageFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.page-leaving {
    animation: pageFadeOut 0.3s cubic-bezier(0.7, 0, 0.84, 0) forwards;
    pointer-events: none;
}

@keyframes pageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    body,
    body.page-leaving {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Stagger hero content on entry */
.hero__content > * {
    opacity: 0;
    animation: heroSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.15s; }
.hero__content > *:nth-child(3) { animation-delay: 0.25s; }
.hero__content > *:nth-child(4) { animation-delay: 0.35s; }
.hero__content > *:nth-child(5) { animation-delay: 0.45s; }

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero > .container > * {
    opacity: 0;
    animation: heroSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero > .container > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero > .container > *:nth-child(2) { animation-delay: 0.15s; }
.page-hero > .container > *:nth-child(3) { animation-delay: 0.25s; }
.page-hero > .container > *:nth-child(4) { animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
    .hero__content > *,
    .page-hero > .container > * {
        opacity: 1;
        animation: none;
    }
}

/* ============================================
   COMMENTS PANEL
   ============================================ */
.comments {
    padding: 100px 0;
    background: var(--bg-cream);
}

.comments__layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.comments__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comments__empty {
    padding: 40px 24px;
    text-align: center;
    color: var(--gray-500);
    background: var(--white);
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
}

.comment-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.comment-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.comment-card__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.comment-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.comment-card__name {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.comment-card__date {
    display: block;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.comment-card__rating {
    color: #F5B342;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.comment-card__rating .rating-empty {
    color: var(--gray-300);
}

.comment-card__text {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
}

/* ---------- Form ---------- */
.comments__form {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.comments__form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.comments__form-hint {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.comments__form-group {
    margin-bottom: 18px;
    position: relative;
}

.comments__form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.comments__form-group input,
.comments__form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: all var(--transition);
    resize: vertical;
}

.comments__form-group input:focus,
.comments__form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-50);
}

.comments__counter {
    position: absolute;
    right: 8px;
    bottom: 6px;
    font-size: 0.75rem;
    color: var(--gray-400);
    background: var(--white);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    pointer-events: none;
}

/* ---------- Rating input ---------- */
.rating-input {
    display: flex;
    gap: 4px;
}

.rating-input__star {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gray-300);
    transition: color 0.15s ease, transform 0.15s ease;
}

.rating-input__star:hover,
.rating-input__star:focus {
    outline: none;
    transform: scale(1.1);
}

.rating-input__star.active {
    color: #F5B342;
}

/* ---------- Feedback ---------- */
.comments__feedback {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    line-height: 1.4;
}

.comments__feedback--success {
    background: rgba(21, 163, 106, 0.1);
    color: #15A36A;
    border: 1px solid rgba(21, 163, 106, 0.25);
}

.comments__feedback--error {
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

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

    .comments__form {
        position: static;
    }
}
