/* =========================
   GLOBAL
   ========================= */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f3f5f7;
    color: #333;
}

/* =========================
   HERO
   ========================= */
.hero {
    min-height: 30vh;
    background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero.small {
    padding: 30px 20px;
    text-align: center;
}
.hero h1 {
    margin: 0 0 12px 0;
    font-size: 2.5rem;
    color: aquamarine;
}

.hero-content {
    max-width: 700px;
}

.cta {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 42px;
    background: #ff9900;
    color: #111;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
}

/* =========================
   SECTIONS
   ========================= */
.section {
    padding: 70px 10%;
}

/* =========================
   GRID & CARD
   ========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 35px;
}

.card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    position: relative;
}

/* =========================
   PRODUCT IMAGE
   ========================= */
.product-image {
    width: 100%;
    height: 200px;
    background: #f3f5f7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    margin-bottom: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.card:hover .product-image img {
    transform: scale(1.08);
}

/* =========================
   TEXT
   ========================= */
.rating {
    margin: 10px 0;
    font-size: 1.1rem;
}

.price {
    font-size: 1.3rem;
    color: #b12704;
}

.disclaimer {
    font-size: .8rem;
    color: #777;
}

/* =========================
   BUTTON
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 36px;
    background: linear-gradient(135deg,#ff9900,#ffb84d);
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(255,153,0,.45);
    transition: .3s;
}

.btn::before {
    content: "🛒";
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn.small {
    padding: 8px 18px;
    font-size: .85rem;
}

/* =========================
   PROS & CONS
   ========================= */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 20px 0;
}

.pros,
.cons {
    border-radius: 14px;
    padding: 14px;
    font-size: 0.9rem;
}

.pros {
    background: #ecfdf3;
    border: 1px solid #b7ebc6;
}

.pros strong {
    color: #0f9d58;
    display: block;
    margin-bottom: 8px;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li {
    color: #155724;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.pros li::before {
    content: "✔";
    color: #0f9d58;
    position: absolute;
    left: 0;
}

.cons {
    background: #f7f7f7;
    border: 1px solid #ddd;
}

.cons strong {
    color: #555;
    display: block;
    margin-bottom: 8px;
}

.cons li {
    color: #555;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.cons li::before {
    content: "✖";
    color: #999;
    position: absolute;
    left: 0;
}

/* =========================
   COMPARISON TABLE
   ========================= */
/* =========================
   WRAPPER CON SCROLL HORIZONTAL
   ========================= */
.table-wrapper {
    margin: 40px auto;        /* centra horizontal */
    max-width: 1100px;        /* controla el ancho */
    overflow-x: auto;
    padding: 0 10px;          /* aire lateral en pantallas chicas */
}


/* =========================
   STICKY CONTAINER (NO OVERFLOW AQUÍ)
   ========================= */


@media (min-width: 1200px) {
    .table-wrapper {
        max-width: 1040px;
    }
}

/* =========================
   MOBILE: DESACTIVAR STICKY
   ========================= */


/* =========================
   COMPARISON TABLE
   ========================= */
.compare-table {
    width: 100%;
    min-width: 720px; /* CLAVE para que el scroll exista */
    border-collapse: collapse;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.compare-table thead th {
    background: #f3f5f7;
    padding: 18px;
    font-weight: 700;
    text-align: center;
}

.compare-table td {
    padding: 18px;
    border-top: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
}

.compare-table tr:hover {
    background: #f5f7fa;
}


/* Product cell */
.compare-product {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.compare-product img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 14px;
    padding: 6px;
}

/* =========================
   BADGES
   ========================= */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 6px;
    margin-right: 6px;
}

.badge.winner {
    background: #ffd700;
    color: #111;
}

.badge.value {
    background: #e6f7ec;
    color: #0f9d58;
    border: 1px solid #9ddfb8;
}

.badge.budget {
    background: #f1f1f1;
    color: #555;
    border: 1px solid #ddd;
}

/* =========================
   ROW HIGHLIGHTS
   ========================= */
.winner-row {
    background: #fff9e6;
    font-weight: 600;
}

.winner-row td {
    border-top: 2px solid #fad02c;
}

.value-row {
    background: #f6fcf8;
}

.budget-row {
    background: #fafafa;
}

/* =========================
   WINNER SECTION
   ========================= */

.winner-section {
    background: linear-gradient(135deg,#fff7e6,#ffffff);
}

.winner-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
    align-items: center;
}

.winner-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f5f7;
    border-radius: 20px;
    padding: 20px;
}

.winner-image img {
    max-width: 30%;
    max-height: 100px;
    object-fit: contain;
}

.winner-content h2 {
    margin: 10px 0;
    font-size: 2rem;
}

.winner-description {
    margin: 15px 0;
    font-size: 1.05rem;
    color: #444;
}

.winner-btn {
    font-size: 1.05rem;
    padding: 16px 42px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .winner-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .winner-image img {
        max-height: 220px;
    }
}
/* =========================
   WHY TRUST US
   ========================= */

.trust-section {
    background: #ffffff;
    text-align: center;
}

.trust-section h2 {
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 30px;
}

.trust-item {
    background: #f9fafb;
    padding: 30px 24px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.trust-item span {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.trust-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.trust-item p {
    font-size: .95rem;
    color: #555;
}

/* =========================
   FAQ SECTION
   ========================= */

.faq-section {
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 20px auto;
    padding: 22px 26px;
    background: #f9fafb;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.faq-item p {
    font-size: .95rem;
    color: #555;
    line-height: 1.6;
}
.internal-links,
.winner-links {
    margin-top: 16px;
    font-size: 0.95rem;
}

.related-guides ul {
    padding-left: 18px;
}

.related-guides a {
    font-weight: 600;
}

/* =========================
   CATEGORY CARDS
   ========================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.category-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: linear-gradient(135deg,#ffffff,#f6f8fa);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,.15);
    color: #111;
}


.intro-text p {
    max-width: 900px;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Featured guides */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.featured-card {
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
    text-decoration: none;
    color: #111;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.featured-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: .75rem;
}

.featured-card h3 {
    margin: .5rem 0;
}

.featured-card p {
    font-size: .95rem;
    color: #555;
}

.featured-cta {
    display: inline-block;
    margin-top: .5rem;
    font-weight: 600;
    color: #ff9900;
}
/* =========================
   BREADCRUMBS
   ========================= */

.breadcrumbs {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    padding: 0 10%;
    font-size: 0.9rem;
    color: #777;
}

.breadcrumbs a {
    color: #0f9d58;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 6px;
}

.breadcrumbs .current {
    color: #555;
    font-weight: 500;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg,#ff9900,#ffb347);
  color: #111;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 12px;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-large {
    padding: 14px 26px;
    font-size: 1.05rem;
}

.winner-secondary-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
    text-decoration: underline;
}

.winner-secondary-link:hover {
    color: #000;
}
.hero-enhanced {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 80px 20px 70px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a5f3fc;
    margin-bottom: 12px;
}

.hero-enhanced h1 {
    font-size: 2.4rem;
    max-width: 900px;
    margin: 0 auto 16px;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 18px;
    color: #e5e7eb;
}

.hero-trust {
    font-size: 0.85rem;
    color: #cbd5f5;
    margin-bottom: 28px;
}

.hero-cta {
    display: inline-block;
    padding: 14px 26px;
    background: #22c55e;
    color: #0f172a;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(34,197,94,.35);
}
.hero-home {
    background: linear-gradient(135deg,#020617,#0f172a);
    padding: 90px 20px 80px;
}

.hero-home h1 {
    font-size: 2.6rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-cta.secondary {
    background: transparent;
    color: #a5f3fc;
    border: 2px solid #38bdf8;
}

.hero-cta.secondary:hover {
    background: #38bdf8;
    color: #020617;
}

.featured-categories h2 {
    text-align: center;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 36px 28px;
    border-radius: 22px;
    text-align: center;
    text-decoration: none;
    color: #111;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.category-card strong {
    display: block;
    font-size: 1.2rem;
    margin-top: 14px;
}

.category-card span {
    display: block;
    margin-top: 8px;
    font-size: .95rem;
    color: #555;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,.15);
}
.category-card.simple {
    padding: 18px;
    font-size: .95rem;
    background: #f9fafb;
    box-shadow: none;
    border: 1px solid #eee;
}

.category-card.simple:hover {
    background: #ffffff;
}
/* =========================
   STICKY COMPARISON TABLE
   ========================= */



/* =========================
   STICKY COMPARISON (FIXED)
   ========================= */


/* =========================
   STICKY COMPARISON (CLEAN)
   ========================= */

.sticky-compare {
    position: sticky;
    top: 90px; /* ⬅️ IMPORTANTE: igual o mayor al alto del nav */
    z-index: 50;
    background: #fff;
    transition: all .25s ease;
}

/* cuando se pega */
.sticky-compare.is-stuck {
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

/* MOBILE: desactivar sticky */
@media (max-width: 900px) {
    .sticky-compare {
        position: static;
    }
}




/* =========================
   STICKY COMPACT MODE
   ========================= */



/* cuando se pega */


/* reducir altura visual */
.sticky-compare.is-stuck .compare-table td,
.sticky-compare.is-stuck .compare-table th {
    padding: 10px 12px;
    font-size: 0.9rem;
}

/* reducir imágenes */
.sticky-compare.is-stuck .compare-product img {
    width: 44px;
    height: 44px;
}

/* =========================
   STICKY COMPACT MODE (FINAL)
   ========================= */


/* cuando se pega */
.sticky-compare.is-stuck {
    padding: 20px 0px 0px 0px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

/* compactar filas */
.sticky-compare.is-stuck th,
.sticky-compare.is-stuck td {
    padding: 12px 10px;
    font-size: 0.85rem;
}

/* compactar imágenes */
.sticky-compare.is-stuck .compare-product img {
    display: none;
}

.sticky-compare.is-stuck .compare-product span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    color: #111;
}

.nav-links a {
    margin-left: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #555;
}

.nav-links a:hover {
    color: #ff9900;
}

/* =========================
   ROCK NAV
   ========================= */

.rock-nav {
    position: sticky;
    top: 0px;
    z-index: 120;
    background: linear-gradient(135deg,#020617,#0f172a);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.rock-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.rock-logo {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: .5px;
    text-decoration: none;
    color: #a5f3fc;
    text-shadow: 0 0 12px rgba(165,243,252,.35);
}

/* LINKS */
.rock-links a {
    margin-left: 22px;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    color: #e5e7eb;
    position: relative;
}

/* underline animado */
.rock-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #22c55e;
    transition: width .25s ease;
}

.rock-links a:hover::after {
    width: 100%;
}

.rock-links a:hover {
    color: #22c55e;
}

/* MOBILE */
@media (max-width: 900px) {
    .rock-links {
        display: none;
    }
}
.nav-cta {
    margin-left: 24px;
    padding: 8px 16px;
    background: #22c55e;
    color: #020617;
    font-weight: 800;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(34,197,94,.45);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(34,197,94,.7);
}

.compare-table thead th {
    background: #f3f5f7;
    padding: 10px 14px;   /* ⬅️ antes era 18px */
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}
.sticky-compare.is-stuck .compare-table thead th {
    padding: 6px 10px;
    font-size: 0.82rem;
}
.sticky-compare.is-stuck .compare-table td {
    padding: 0px 0px;
    font-size: 0.88rem;
}
/* .sticky-compare.is-stuck .compare-product span {
    display: none;
} */
.compare-table th:first-child,
.compare-table td:first-child {
    width: 40%;
}

.compare-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.compare-product img {
    width: 50px;
    height: auto;
    flex-shrink: 0;
}
.compare-product span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    font-size: 0.9rem;
}

.sticky-compare.is-stuck .compare-product span {
    font-weight: 700;
    color: #111;
}







/* =========================
   STICKY COMPARISON CONTROLS
   ========================= */

.compare-controls {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.compare-toggle {
    background: linear-gradient(135deg, #ff9800, #ffb347);
    color: #111;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    transition: transform .2s ease, opacity .2s ease;
}

.compare-toggle:hover {
    transform: scale(1.05);
}

/* =========================
   HIDE ONLY STICKY TABLE
   ========================= */

.sticky-compare.compare-hidden .table-wrapper {
    display: none;
}

#top-picks {
    scroll-margin-top: 90px;
}



.sticky-compare.is-sticky .compare-product {
    display: flex;
    align-items: center;
}
.sticky-compare.is-sticky .compare-product span {
    font-weight: 700;
    line-height: 1.1;
}
.sticky-compare.is-sticky td {
    vertical-align: middle;
}
.sticky-compare.is-sticky {
    outline: 2px solid lime;
}
.product-image {
    width: 30%;
    height: auto;
}

.winner-image {
    max-width: 900px;
    margin: 0 auto 20px;
    display: block;
}


.guides-hero {
  text-align: center;
  padding: 60px 20px;
}

.guides-hero p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.guide-card {
  display: block;
  padding: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  text-decoration: none;
  color: #000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.guide-card p {
  color: #666;
  margin-top: 8px;
}

section {
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 20px;
}
.guides-hero {
    text-align: center;
    padding: 4rem 1rem;
    background: #f8fafc;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.guide-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #111;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.btn-primary {
    display: inline-block;
    margin-top: 1rem;
    padding: .75rem 1.5rem;
    background: #111;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

.category-grid.aggressive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.category-card.aggressive {
    position: relative;
    padding: 26px 22px;
    border-radius: 16px;

    background: radial-gradient(circle at top, #1f1f1f, #0d0d0d);
    color: #fff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card.aggressive:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

/* 🔥 BADGE */
.category-badge {
    position: absolute;
    top: 14px;
    right: 14px;

    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;

    background: linear-gradient(135deg, #ff9900, #ffcc00);
    color: #000;
}

/* TITLE */
.category-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 28px 0 10px;
}

/* DESC */
.category-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 22px;
}

/* CTA */
.category-cta {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;

    color: #000;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    padding: 10px 14px;
    border-radius: 10px;

    transition: transform 0.2s ease;
}

.category-card.aggressive:hover .category-cta {
    transform: translateX(6px);
}
/* ======================
   NAV BASE
====================== */
.rock-nav {
    position: sticky;
    top: 0;
    background: #0b0b0b;
    z-index: 100;
}

.rock-nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rock-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
}

/* Links desktop */
.rock-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-cta {
    background: #ff3d00;
    padding: 8px 14px;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
}

/* ======================
   HAMBURGER
====================== */
.nav-toggle {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* ======================
   MOBILE
====================== */
@media (max-width: 768px) {

    .nav-toggle {
        display: block;
    }

    .rock-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        gap: 14px;
        padding: 20px;
        display: none;
    }

    .rock-links.active {
        display: flex;
    }

}

/* ======================
   HERO
====================== */
.hero {
    background: radial-gradient(circle at top, #111, #000);
    color: #fff;
    padding: 60px 20px;
}

.hero-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
}

.hero-cta.primary {
    background: #ff3d00;
    color: #fff;
}

.hero-cta.secondary {
    border: 1px solid #333;
    color: #fff;
}

/* ======================
   MOBILE HERO
====================== */
@media (max-width: 768px) {

    .hero {
        padding: 40px 16px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta {
        width: 100%;
    }

}