/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    color: #1e293b;
    line-height: 1.7;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6366f1;
    margin-bottom: 16px;
}

.section-label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #6366f1;
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0f172a;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 640px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: #0f172a;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #6366f1;
}

.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0f172a;
}

a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

a.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4);
}

a.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
}

a.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #e0e7ff;
}

a.btn-outline:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
}

a.btn-lg {
    padding: 20px 48px;
    font-size: 1.125rem;
    border-radius: 16px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(99, 102, 241, 0.08) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(139, 92, 246, 0.06) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #eef2ff;
    border: 1px solid #e0e7ff;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-card-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.floating-card-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
}

.floating-card-sub {
    font-size: 0.7rem;
    color: #94a3b8;
}

/* ===== FEATURES ===== */
.features {
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: #eef2ff;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* ===== SCREENSHOTS ===== */
.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.screenshot-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.screenshot-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.screenshot-item:hover img {
    transform: scale(1.03);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 23, 42, 0.6),
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== LINK TYPES ===== */
.link-types-section {
    background: #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.link-types-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(99, 102, 241, 0.15),
            transparent 70%);
    border-radius: 50%;
}

.link-types-section .section-label {
    color: #a5b4fc;
}

.link-types-section .section-label::before {
    background: #a5b4fc;
}

.link-types-section .section-title {
    color: #fff;
}

.link-types-section .section-subtitle {
    color: #94a3b8;
}

.link-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.link-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.link-type-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-4px);
}

.link-type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(99, 102, 241, 0.15);
}

.link-type-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.link-type-card p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ===== APPEARANCE CONTROLS ===== */
.appearance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.appearance-controls-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.appearance-control-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.appearance-control-item:hover {
    background: #eef2ff;
    border-color: #e0e7ff;
}

.control-color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.appearance-control-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.appearance-preview {
    position: relative;
}

.appearance-preview-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.appearance-preview-image img {
    width: 100%;
    display: block;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 48px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #6366f1);
    opacity: 0.2;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.step-card p {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== PRICING ===== */
.pricing-section {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 56px 48px;
    text-align: center;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a78bfa);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 32px;
}

.pricing-amount {
    margin-bottom: 32px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64748b;
    vertical-align: top;
    line-height: 1.5;
}

.pricing-value {
    font-size: 4.5rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
    margin-top: 4px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #334155;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6366f1;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
    padding: 20px;
    font-size: 1.125rem;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ===== PERFECT FOR ===== */
.perfect-for-section {
    background: #f8fafc;
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.perfect-for-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.perfect-for-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: #e0e7ff;
}

.perfect-for-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.perfect-for-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e0e7ff;
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border-color: #c7d2fe;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #64748b;
}

.faq-item.active .faq-toggle {
    background: #6366f1;
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1),
            transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.08),
            transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: #fff;
    color: #6366f1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 20px 56px;
    font-size: 1.125rem;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 48px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer p {
    font-size: 0.9rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .link-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .appearance-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .appearance-preview {
        order: -1;
    }

    .perfect-for-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 16px 16px;
        gap: 16px;
    }

    .hero {
        padding: 120px 0 72px;
    }

    .hero-stats {
        gap: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .link-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-gallery {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps-grid::before {
        display: none;
    }

    .appearance-controls-list {
        grid-template-columns: 1fr;
    }

    .perfect-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
        padding: 40px 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .link-types-grid {
        grid-template-columns: 1fr;
    }

    .perfect-for-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}