* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3385ff;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1c1c1c;
    --bg-card-hover: #252525;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --text-muted: #999999;
    --border-color: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary-color);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-bars {
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.play-bars span {
    width: 4px;
    background: white;
    border-radius: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

.play-bars span:first-child {
    height: 12px;
    animation-delay: 0s;
}

.play-bars span:nth-child(2) {
    height: 18px;
    animation-delay: 0.2s;
}

.play-bars span:nth-child(3) {
    height: 10px;
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a0a0a 100%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 0),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 0);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px 50px;
    align-items: center;
    padding: 30px 20px;
}

.hero-text {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
}

.hero-buttons {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.check-mark {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.check-mark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.hero-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 0 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px) scale(1.05);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.info-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-radius: 50%;
}

.info-icon::after {
    content: "i";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 14px;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-darker);
}

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

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Ranking Cards */
.ranking-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.ranking-card:hover {
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.ranking-card-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, var(--bg-card) 100%);
    position: relative;
    padding-top: 48px;
    margin-bottom: 32px;
}

.ranking-card-badge {
    position: absolute;
    top: 0;
    left: 24px;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
}

.ranking-card-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ranking-card-position {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.ranking-card-featured .ranking-card-position {
    font-size: 48px;
}

.ranking-card-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.ranking-card-featured .ranking-card-img {
    width: 72px;
    height: 72px;
}

.ranking-card-info {
    flex: 1;
}

.ranking-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.ranking-card-featured .ranking-card-name {
    font-size: 24px;
}

.ranking-card-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.ranking-card-stars .stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 2px;
}

.ranking-card-reviews {
    color: var(--text-muted);
    font-size: 13px;
}

.ranking-card-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.ranking-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ranking-tag {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.ranking-card-action {
    flex-shrink: 0;
}

.ranking-card-action .btn {
    white-space: nowrap;
    min-width: 160px;
    text-align: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ranking-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.2);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 25px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.click-icon::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    top: 15px;
}

.click-icon::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 10px;
    border: 2px solid var(--primary-color);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    top: 17px;
}

.robot-icon::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    top: 22px;
}

.robot-icon::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    top: 16px;
}

.message-icon::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 22px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    top: 18px;
}

.message-icon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary-color);
    bottom: 16px;
    left: 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 28px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px) rotate(1deg);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.shield-icon::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 3px 3px 10px 10px;
}

.shield-icon::after {
    content: "✓";
    position: absolute;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
}

.content-icon::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 26px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}

.content-icon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--primary-color);
    transform: rotate(90deg);
}

.device-icon::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    top: 14px;
}

.device-icon::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--primary-color);
    bottom: 12px;
}

.support-icon::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 10px;
}

.support-icon::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 12px;
    border-radius: 13px 13px 0 0;
    border: 2px solid var(--primary-color);
    border-bottom: none;
    bottom: 10px;
}

.quality-icon::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.quality-icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.lightning-icon::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid var(--primary-color);
    top: 12px;
}

.lightning-icon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--primary-color);
    bottom: 14px;
    left: 22px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
}

.feature-item .step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 102, 255, 0.1);
    line-height: 1;
    background: none;
    -webkit-text-fill-color: rgba(0, 102, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.tv-icon::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

.tv-icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 4px;
    background: var(--primary-color);
    bottom: 12px;
}

.movie-icon::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}

.movie-icon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--primary-color);
    left: 22px;
}

.sports-icon::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.sports-icon::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
}

.hd-icon::before {
    content: "HD";
    position: absolute;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(0, 102, 255, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(0, 102, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 35px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-text {
    color: #d0d0d0;
    max-width: 500px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 14px;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-text {
        text-align: left;
        order: 1;
    }

    .hero-image {
        grid-column: 1;
        grid-row: auto;
        order: 2;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: 16px;
    }

    .hero-buttons {
        grid-column: 1;
        grid-row: auto;
        order: 3;
        flex-direction: column;
    }

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

    .ranking-card-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .ranking-card-position {
        font-size: 28px;
        min-width: auto;
    }

    .ranking-card-featured .ranking-card-position {
        font-size: 36px;
    }

    .ranking-card-name {
        font-size: 18px;
    }

    .ranking-card-featured .ranking-card-name {
        font-size: 20px;
    }

    .ranking-card-action {
        width: 100%;
    }

    .ranking-card-action .btn {
        width: 100%;
        min-width: auto;
    }

    .ranking-card-img {
        width: 48px;
        height: 48px;
    }

    .ranking-card-featured .ranking-card-img {
        width: 56px;
        height: 56px;
    }

    .benefits-grid,
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .step-card,
    .benefit-card {
        padding: 25px 20px;
    }
}

@media print {
    .header, .footer, .btn {
        display: none;
    }
}
