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

:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #818CF8;
    --secondary: #06B6D4;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #111827;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body.dark-mode {
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-dark: #020617;
    --border: #334155;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
}

body.dark-mode .feature-card,
body.dark-mode .testimonial-card,
body.dark-mode .pricing-card,
body.dark-mode .visual-box {
    background: #1E293B;
    border-color: #334155;
}

body.dark-mode .comparison-table {
    background: #1E293B;
}

body.dark-mode .comparison-table th,
body.dark-mode .comparison-table td {
    border-color: #334155;
}

body.dark-mode .badge,
body.dark-mode .section-badge {
    background: rgba(79, 70, 229, 0.2);
    color: #A78BFA;
}

body.dark-mode .built-for-shopify-badge rect[fill="#E0F0FF"] {
    fill: #1E3A5F;
}

body.dark-mode .built-for-shopify-badge path[fill="#003D4F"] {
    fill: #E0F0FF;
}

body.dark-mode .built-for-shopify-badge-large .badge-light {
    display: none;
}

body.dark-mode .built-for-shopify-badge-large .badge-dark {
    display: block;
}

body.dark-mode .built-for-shopify {
    background: linear-gradient(135deg,
        rgba(79, 70, 229, 0.15) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(79, 70, 229, 0.15) 100%
    );
}

body.dark-mode .built-for-shopify::before {
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
}

body.dark-mode .built-for-shopify::after {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

/* Dark mode navbar */
body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
    color: white;
}

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

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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
    letter-spacing: -0.02em;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.support-highlight--contact {
    margin-top: 32px;
    margin-bottom: 32px;
}

.support-highlight--contact .support-title {
    font-size: 20px;
}

.support-highlight--contact .support-description {
    font-size: 14px;
}

.support-highlight--contact .support-points li {
    font-size: 13px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0 solid var(--border);
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
}

.theme-toggle svg {
    position: absolute;
    transition: all 0.3s;
    color: var(--text-primary);
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

body.dark-mode .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
}

body.dark-mode .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

 body.menu-open {
     overflow: hidden;
 }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-close {
    display: none;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

 .mobile-nav-overlay {
     display: none;
     pointer-events: none;
 }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.built-for-shopify-badge {
    height: 56px;
    width: auto;
    flex-shrink: 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border);
    will-change: transform;
    contain: layout;
}

.card-1 {
    top: 20px;
    left: 20px;
}

.card-2 {
    top: 80px;
    right: 40px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 140px;
    left: 40px;
    animation-delay: 2s;
}

.card-4 {
    top: 240px;
    right: 20px;
    animation-delay: 2.5s;
}

.card-5 {
    bottom: 20px;
    right: 100px;
    animation-delay: 3s;
}

.card-6 {
    bottom: 280px;
    left: 160px;
    animation-delay: 3.5s;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.feature-badge svg {
    flex-shrink: 0;
}

.breadcrumb-demo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb-demo .separator {
    color: var(--text-light);
}

.breadcrumb-demo .active {
    color: var(--primary);
    font-weight: 600;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #10B981;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blob 7s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -250px;
    left: -250px;
    animation-delay: 2s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #F59E0B;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Section Styles */
section {
    padding: 60px 0;
}

 .legal-page {
     padding: 72px 0 0;
 }

 .legal-hero {
     padding: 120px 0 56px;
     position: relative;
     overflow: hidden;
     background: linear-gradient(180deg, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0.03) 60%, var(--bg-secondary) 100%);
 }

 .legal-hero::before {
     content: '';
     position: absolute;
     top: -240px;
     right: -240px;
     width: 520px;
     height: 520px;
     background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 70%);
     filter: blur(10px);
     border-radius: 50%;
     pointer-events: none;
 }

 .legal-hero::after {
     content: '';
     position: absolute;
     bottom: -240px;
     left: -240px;
     width: 520px;
     height: 520px;
     background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
     filter: blur(10px);
     border-radius: 50%;
     pointer-events: none;
 }

 .legal-hero-inner {
     position: relative;
     z-index: 1;
     max-width: 900px;
     margin: 0 auto;
     text-align: center;
 }

 .legal-title {
     font-size: 52px;
     font-weight: 900;
     letter-spacing: -0.02em;
     line-height: 1.05;
     margin: 14px 0 12px;
     color: var(--text-primary);
 }

 .legal-subtitle {
     font-size: 18px;
     color: var(--text-secondary);
     line-height: 1.7;
     max-width: 720px;
     margin: 0 auto 12px;
 }

 .legal-updated {
     font-size: 14px;
     color: var(--text-secondary);
     margin-top: 6px;
 }

 .legal-body {
     padding: 40px 0 80px;
     background: var(--bg-secondary);
 }

 .legal-layout {
     display: grid;
     grid-template-columns: 280px 1fr;
     gap: 28px;
     align-items: start;
 }

 .legal-toc {
     position: sticky;
     top: 92px;
 }

 .legal-toc-card {
     background: var(--bg-primary);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 18px 16px;
     box-shadow: var(--shadow-sm);
 }

 .legal-toc-title {
     font-size: 13px;
     font-weight: 800;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     color: var(--text-secondary);
     margin-bottom: 12px;
 }

 .legal-toc-card ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .legal-toc-card a {
     display: block;
     padding: 8px 10px;
     border-radius: 10px;
     color: var(--text-secondary);
     text-decoration: none;
     font-weight: 600;
     font-size: 13px;
     transition: all 0.2s;
 }

 .legal-toc-card a:hover {
     background: rgba(79, 70, 229, 0.08);
     color: var(--text-primary);
 }

 .legal-card {
     background: var(--bg-primary);
     border: 1px solid var(--border);
     border-radius: 18px;
     padding: 40px;
     box-shadow: var(--shadow-md);
 }

 .legal-content {
     max-width: 860px;
 }

 .legal-content h2 {
     font-size: 22px;
     font-weight: 900;
     letter-spacing: -0.01em;
     color: var(--text-primary);
     margin-top: 28px;
     margin-bottom: 10px;
     scroll-margin-top: 96px;
 }

 .legal-content p {
     font-size: 15px;
     color: var(--text-secondary);
     line-height: 1.85;
     margin-bottom: 14px;
 }

 .legal-content ul {
     margin: 0 0 14px;
     padding-left: 18px;
 }

 .legal-content li {
     font-size: 15px;
     color: var(--text-secondary);
     line-height: 1.85;
     margin-bottom: 10px;
 }

 .legal-link {
     color: var(--primary);
     text-decoration: none;
     font-weight: 800;
 }

 .legal-link:hover {
     text-decoration: underline;
 }

 body.dark-mode .legal-hero {
     background: linear-gradient(180deg, rgba(79, 70, 229, 0.14) 0%, rgba(79, 70, 229, 0.04) 60%, #0F172A 100%);
 }

 body.dark-mode .legal-body {
     background: #0F172A;
 }

 body.dark-mode .legal-toc-card,
 body.dark-mode .legal-card {
     background: #1E293B;
     border-color: #334155;
 }

 body.dark-mode .legal-toc-card a:hover {
     background: rgba(79, 70, 229, 0.18);
 }

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Features Section */
.features {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

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

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

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Comparison Section */
.comparison {
    background: var(--bg-primary);
}

.comparison-table-wrapper {
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: visible;
}

.comparison-table-scroll {
    overflow: visible;
    border-radius: 12px;
}

.comparison-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    min-width: 900px;
}

.comparison-table thead {
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--border);
}

.comparison-table th {
    padding: 16px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}

.comparison-table thead th {
    position: sticky;
    top: 72px;
    z-index: 50;
}

.comparison-table thead th {
    background: var(--bg-secondary);
}

body.dark-mode .comparison-table thead th {
    background: #1E293B;
}

.comparison-table thead th.our-app-column {
    background: var(--bg-secondary);
}

body.dark-mode .comparison-table thead th.our-app-column {
    background: #1E293B;
}

.comparison-table thead th {
    box-shadow: 0 1px 0 var(--border);
}

@media (max-width: 899px) {
    .comparison-table-wrapper {
        overflow: hidden;
    }

    .comparison-table-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table thead th {
        position: static;
        top: auto;
        z-index: auto;
    }
}

@media (max-width: 768px) {
    .support-highlight--contact .support-actions .btn.btn-primary {
        display: none;
    }
}

.comparison-table th.feature-column {
    text-align: left;
    width: 30%;
}

.comparison-table th.our-app-column {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.05));
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    width: 17.5%;
}

.comparison-table th:not(.feature-column):not(.our-app-column) {
    width: 17.5%;
}

.column-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.app-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: rgba(79, 70, 229, 0.02);
}

.comparison-table tbody tr.price-row {
    background: var(--bg-secondary);
    font-weight: 700;
}

.comparison-table tbody tr.price-row:hover {
    background: var(--bg-secondary);
}

.comparison-table td {
    padding: 10px 12px;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.comparison-table td:first-child {
    border-left: none;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td.our-app {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(79, 70, 229, 0.02));
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}

.feature-name {
    text-align: left !important;
}

.feature-name strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.feature-desc {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.check-cell {
    color: #10B981;
}

.check-icon {
    stroke: #10B981;
    display: inline-block;
}

.cross-cell {
    color: #EF4444;
}

.cross-icon {
    stroke: #EF4444;
    display: inline-block;
    opacity: 0.5;
}

.limited-cell {
    text-align: center;
}

.limited-badge {
    background: #FEF3C7;
    color: #92400E;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.limited-text {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-top: 4px;
}

.price-cell {
    font-weight: 600;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.period {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.comparison-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.05));
    border-radius: 12px;
}

.comparison-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.comparison-cta p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Built for Shopify Section */
.built-for-shopify {
    padding: 60px 0;
    background: linear-gradient(135deg,
        rgba(79, 70, 229, 0.08) 0%,
        rgba(139, 92, 246, 0.05) 50%,
        rgba(79, 70, 229, 0.08) 100%
    );
    position: relative;
    overflow: hidden;
}

.built-for-shopify::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.built-for-shopify::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.built-for-shopify .glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.6;
    animation: float-glow 8s ease-in-out infinite;
    will-change: transform;
    contain: layout paint;
}

.built-for-shopify .glow-orb-1 {
    top: 10%;
    left: 15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.5) 0%, rgba(79, 70, 229, 0.2) 40%, transparent 70%);
    animation-delay: 0s;
}

.built-for-shopify .glow-orb-2 {
    bottom: 15%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, rgba(139, 92, 246, 0.18) 40%, transparent 70%);
    animation-delay: 2s;
}

.built-for-shopify .glow-orb-3 {
    top: 50%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(99, 102, 241, 0.15) 40%, transparent 70%);
    animation-delay: 4s;
}

.built-for-shopify .glow-orb-4 {
    bottom: 30%;
    left: 10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, rgba(168, 85, 247, 0.15) 40%, transparent 70%);
    animation-delay: 6s;
}

@keyframes float-glow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
    }
    50% {
        transform: translate(-15px, 15px) scale(0.9);
    }
    75% {
        transform: translate(15px, 10px) scale(1.05);
    }
}

.built-for-shopify-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.built-for-shopify-badge-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

.built-for-shopify-badge-large img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.built-for-shopify-badge-large .badge-dark {
    display: none;
}

.built-for-shopify-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.built-for-shopify-title .checkmark {
    color: #10B981;
    font-size: 40px;
}

@media (max-width: 768px) {
    .built-for-shopify-title .checkmark {
        display: none;
    }
}

.built-for-shopify-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.built-for-shopify-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bfs-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bfs-feature svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.bfs-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.bfs-feature p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .built-for-shopify {
        padding: 60px 0;
    }

    .built-for-shopify-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .built-for-shopify-badge-large {
        padding: 0;
        order: -1;
    }

    .built-for-shopify-badge-large img {
        max-width: 200px;
    }

    .built-for-shopify-title {
        font-size: 26px;
        justify-content: center;
    }

    .built-for-shopify-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .built-for-shopify-features {
        gap: 20px;
    }

    .bfs-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .bfs-feature h4 {
        font-size: 15px;
    }

    .bfs-feature p {
        font-size: 13px;
    }
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 113px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.step-reverse {
    grid-template-columns: 60px 1fr 1fr;
}

.step-reverse .step-content {
    order: 2;
}

.step-reverse .step-visual {
    order: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.visual-box {
    background: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.visual-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon svg {
    display: block;
    width: 48px;
    height: 48px;
}

.visual-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.support-highlight {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.support-highlight-content {
    display: flex;
    flex-direction: column;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.12);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    align-self: flex-start;
    max-width: max-content;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-title {
    margin-top: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.support-description {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.support-points {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.support-points li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.support-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10B981;
    font-weight: 800;
}

.support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.support-highlight-visual {
    display: flex;
}

.support-visual-card {
    background: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.support-visual-footer {
    margin-top: 14px;
}

.support-visual-footer strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.support-visual-footer span {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.support-visual-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.support-visual-item:not(:last-child) {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.support-visual-check {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.support-visual-text strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.support-visual-text span {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Pricing Background Effects */
.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 560px;
    margin: 0 auto;
    align-items: stretch;
}

.price-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    will-change: transform;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(139, 92, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.4);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card-featured {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 12px 48px rgba(79, 70, 229, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-card-featured::before {
    opacity: 0.8;
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(79, 70, 229, 1), rgba(139, 92, 246, 1));
    color: white;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.pricing-header {
    margin-bottom: 20px;
}

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

.pricing-description {
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.pricing-card .btn-block {
    margin-top: auto;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: rgba(79, 70, 229, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.15);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    will-change: transform;
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating svg {
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 48px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: white;
    border-radius: 16px;
    border: 2px solid transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #8B5CF6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.1);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.12);
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary), #8B5CF6);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon svg {
    color: white;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.contact-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.contact-link-text {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-link-text {
    color: #5B21B6;
    transform: scaleX(1);
    transform-origin: left;
}

/* Dark mode for contact */
body.dark-mode .contact {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

body.dark-mode .contact-card {
    background: #1E293B;
    border-color: #334155;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

body.dark-mode .contact-card:hover {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.2);
}

body.dark-mode .contact-option {
    background: #1E293B;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.dark-mode .contact-option:hover {
    box-shadow: 0 20px 48px rgba(79, 70, 229, 0.25);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-title {
        font-size: 16px;
    }

    .contact-link-text {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo:hover {
    opacity: 0.8;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 32px 0 0 0;
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-content {
        gap: 60px;
    }

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

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

     .legal-title {
         font-size: 44px;
     }

     .legal-layout {
         grid-template-columns: 1fr;
     }

     .legal-toc {
         position: static;
     }
}

/* Desktop - Show text by default (≥1280px) - already showing */

/* Desktop/Laptop - Hide text (1280px - 890px) */
@media (max-width: 1279px) and (min-width: 890px) {
    .navbar .logo span {
        display: none;
    }
}

/* Tablet - Show text (890px - 426px) - already showing */

/* Mobile - Hide text (≤425px) */
@media (max-width: 425px) {
    .navbar .logo span {
        display: none;
    }
}

/* Tablet/Mobile - Show hamburger menu (899px and below) */
@media (max-width: 899px) {
    .nav-wrapper {
        justify-content: space-between;
    }

    .nav-actions {
        gap: 8px;
        margin-left: auto;
    }

    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 18px;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 86vw);
        padding: 96px 22px 22px;
        background: var(--bg-primary);
        border-left: 1px solid var(--border);
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform 0.25s ease;
        z-index: 9999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        font-size: 16px;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .nav-menu .nav-link:hover {
        background: rgba(79, 70, 229, 0.08);
    }

    .mobile-menu-close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: var(--bg-secondary);
        color: var(--text-primary);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }

    .nav-menu.active .mobile-menu-close {
        display: flex;
    }

    .mobile-menu-close:hover {
        background: var(--border);
        transform: rotate(90deg);
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 1;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1200;
    }

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

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

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .hero-buttons .btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-image-wrapper {
        height: 400px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

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

    .feature-card {
        display: block;
        text-align: left;
    }

    .feature-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .feature-title {
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
    }

    .feature-description {
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    .comparison-table-wrapper {
        margin-bottom: 40px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
        font-size: 13px;
    }

    .feature-name strong {
        font-size: 14px;
    }

    .feature-desc {
        font-size: 12px;
    }

    .price {
        font-size: 20px;
    }

    .comparison-cta {
        padding: 32px 24px;
    }

    .comparison-cta h3 {
        font-size: 24px;
    }

    .steps {
        max-width: 600px;
        margin: 0 auto;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .step-reverse .step-content,
    .step-reverse .step-visual {
        order: initial;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .support-highlight {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links {
        display: flex;
        gap: 40px;
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-links .footer-column:first-child {
        display: none;
    }

    .footer-links .footer-column {
        flex: 1;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

     .legal-hero {
         padding: 104px 0 44px;
     }

     .legal-title {
         font-size: 34px;
     }

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

     .legal-card {
         padding: 24px;
     }
}

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

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

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

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat {
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-links .footer-column {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

     .legal-title {
         font-size: 28px;
     }

     .legal-card {
         padding: 18px;
     }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 9999;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    width: 100%;
    max-width: 1100px;
    margin: 0;
    padding: 20px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "icon text actions";
    align-items: center;
    gap: 24px;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-icon {
    grid-area: icon;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

 .cookie-consent-icon img {
     width: 40px;
     height: 40px;
     display: block;
 }

.cookie-consent-text {
    grid-area: text;
}

.cookie-consent-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.cookie-consent-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--primary-dark);
}

.cookie-consent-actions {
    grid-area: actions;
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--primary);
    color: white;
}

.cookie-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border);
}

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

/* Dark mode for cookie consent */
body.dark-mode .cookie-consent-content {
    background: #1E293B;
    border-color: #334155;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

body.dark-mode .cookie-btn-secondary {
    border-color: #334155;
    color: var(--text-secondary);
}

body.dark-mode .cookie-btn-secondary:hover {
    background: #0F172A;
    border-color: #475569;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 16px;
        padding: 0 12px;
    }

    .cookie-consent-content {
        padding: 20px;
        gap: 16px;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon text"
            "actions actions";
    }

    .cookie-consent-icon {
        width: 40px;
        height: 40px;
    }

    .cookie-consent-icon svg {
        width: 20px;
        height: 20px;
    }

    .cookie-consent-icon img {
        width: 34px;
        height: 34px;
    }

    .cookie-consent-title {
        font-size: 15px;
    }

    .cookie-consent-description {
        font-size: 13px;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
        margin-top: 8px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-content {
        padding: 16px;
        gap: 12px;
    }

    .cookie-consent-icon {
        width: 36px;
        height: 36px;
    }

    .cookie-consent-icon svg {
        width: 18px;
        height: 18px;
    }

    .cookie-consent-icon img {
        width: 30px;
        height: 30px;
    }

    .cookie-consent-title {
        font-size: 14px;
    }

    .cookie-consent-description {
        font-size: 12px;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ===================================
   UPGRADE BANNER
   =================================== */

.upgrade-banner {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, rgba(238, 242, 255, 0.95) 0%, rgba(224, 231, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 70, 229, 0.2);
    border-top: 1px solid rgba(79, 70, 229, 0.1);
    animation: slideDown 0.5s ease-out;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 200px;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.upgrade-banner.closing {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
}

.upgrade-banner.hidden {
    display: none;
}

.upgrade-banner-container {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.upgrade-banner-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.15);
    border-radius: 50%;
    color: var(--primary);
}

.upgrade-banner-content {
    flex: 1;
}

.upgrade-banner-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.upgrade-banner-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.upgrade-banner-text strong {
    color: var(--primary);
    font-weight: 600;
}

.upgrade-banner-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-secondary);
    transition: all 0.3s;
    cursor: pointer;
}

.upgrade-banner-close:hover {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

.upgrade-banner-close svg {
    pointer-events: none;
}

/* Dark mode banner */
body.dark-mode .upgrade-banner {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.85) 0%, rgba(67, 56, 202, 0.85) 100%);
    border-bottom: 1px solid rgba(129, 140, 248, 0.3);
    border-top: 1px solid rgba(129, 140, 248, 0.2);
}

body.dark-mode .upgrade-banner-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

body.dark-mode .upgrade-banner-title {
    color: #ffffff;
}

body.dark-mode .upgrade-banner-text {
    color: rgba(255, 255, 255, 0.95);
}

body.dark-mode .upgrade-banner-text strong {
    color: #ffffff;
}

body.dark-mode .upgrade-banner-close {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .upgrade-banner-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Uptime Badge in Comparison Table */
.uptime-cell {
    text-align: center;
    padding: 20px !important;
}

.uptime-detail-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.uptime-detail-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.uptime-badge-link {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.uptime-badge-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.uptime-badge-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Feature link styling */
.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    white-space: nowrap;
}

.feature-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Dark mode for feature link */
body.dark-mode .feature-link {
    color: #A78BFA;
}

body.dark-mode .feature-link:hover {
    color: #C4B5FD;
}

body.dark-mode .uptime-detail-link {
    color: #A78BFA;
}

body.dark-mode .uptime-detail-link:hover {
    color: #C4B5FD;
}

 .blog-hero {
     padding: 120px 0 56px;
     position: relative;
     overflow: hidden;
     background: linear-gradient(180deg, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0.03) 60%, var(--bg-secondary) 100%);
 }

 .blog-hero::before {
     content: '';
     position: absolute;
     top: -240px;
     right: -240px;
     width: 520px;
     height: 520px;
     background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 70%);
     filter: blur(10px);
     border-radius: 50%;
     pointer-events: none;
 }

 .blog-hero::after {
     content: '';
     position: absolute;
     bottom: -240px;
     left: -240px;
     width: 520px;
     height: 520px;
     background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
     filter: blur(10px);
     border-radius: 50%;
     pointer-events: none;
 }

 .blog-hero-inner {
     position: relative;
     z-index: 1;
     max-width: 900px;
     margin: 0 auto;
     text-align: center;
 }

 .blog-hero--detail {
     padding: 112px 0 40px;
 }

 .blog-hero--detail .blog-hero-title {
     font-size: 44px;
     line-height: 1.1;
     margin-top: 10px;
 }

 .blog-hero--detail .blog-back {
     font-weight: 800;
     letter-spacing: 0.01em;
 }

 .blog-hero-inner--detail {
     text-align: left;
     max-width: 760px;
 }

 .blog-back {
     display: inline-block;
     color: var(--text-secondary);
     text-decoration: none;
     font-weight: 700;
     font-size: 14px;
     margin-bottom: 12px;
 }

 .blog-back:hover {
     color: var(--text-primary);
 }

 .blog-hero-title {
     font-size: 52px;
     font-weight: 600;
     letter-spacing: -0.01em;
     line-height: 1.15;
     margin: 14px 0 12px;
     color: var(--text-primary);
 }

 .blog-hero-subtitle {
     font-size: 18px;
     color: var(--text-secondary);
     line-height: 1.7;
     max-width: 720px;
     margin: 0 auto 12px;
 }

 .blog-body {
     padding: 40px 0 80px;
     background: var(--bg-secondary);
 }

 .blog-hero--detail + .blog-body {
     background: var(--bg-primary);
     padding: 24px 0 96px;
 }

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

 .blog-card-media {
     height: 160px;
     border-radius: 18px 18px 0 0;
     margin: 0;
     background:
       radial-gradient(circle at 20% 10%, rgba(79, 70, 229, 0.28) 0%, transparent 45%),
       radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.22) 0%, transparent 45%),
       linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(139, 92, 246, 0.06) 45%, rgba(15, 23, 42, 0.0) 100%),
       var(--bg-secondary);
     border-top: 1px solid rgba(79, 70, 229, 0.16);
     border-left: 1px solid rgba(79, 70, 229, 0.16);
     border-right: 1px solid rgba(79, 70, 229, 0.16);
 }

 .blog-card-content {
     padding: 22px 22px 24px;
 }

 .blog-card {
     background: var(--bg-primary);
     border: 1px solid var(--border);
     border-radius: 18px;
     padding: 0;
     box-shadow: none;
     transition: box-shadow 0.2s ease, border-color 0.2s ease;
     overflow: hidden;
 }

 .blog-card .blog-card-title {
     margin-top: 0;
 }

 .blog-card:hover {
     box-shadow: var(--shadow-sm);
     border-color: rgba(79, 70, 229, 0.25);
 }

 .blog-card-meta {
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text-secondary);
     font-size: 13px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .blog-card-dot {
     opacity: 0.7;
 }

 .blog-card-title {
     font-size: 20px;
     font-weight: 500;
     letter-spacing: -0.005em;
     line-height: 1.3;
     margin-bottom: 8px;
 }

 .blog-card-link {
     color: var(--text-primary);
     text-decoration: none;
 }

 .blog-card-link:hover {
     color: var(--primary);
 }

 .blog-card-excerpt {
     font-size: 15px;
     color: var(--text-secondary);
     line-height: 1.85;
     margin-bottom: 0;
     display: -webkit-box;
     line-clamp: 4;
     -webkit-line-clamp: 4;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

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

 .blog-tag {
     display: inline-flex;
     align-items: center;
     padding: 6px 10px;
     border-radius: 999px;
     background: rgba(79, 70, 229, 0.08);
     color: var(--primary);
     font-size: 12px;
     font-weight: 800;
     letter-spacing: 0.01em;
 }

 .blog-pagination {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-top: 28px;
 }

 .blog-page {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 40px;
     height: 40px;
     padding: 0 14px;
     border-radius: 12px;
     border: 1px solid var(--border);
     background: var(--bg-primary);
     color: var(--text-secondary);
     text-decoration: none;
     font-weight: 800;
     font-size: 14px;
     transition: all 0.2s;
 }

 .blog-page:hover {
     border-color: rgba(79, 70, 229, 0.35);
     color: var(--text-primary);
 }

 .blog-page.current {
     background: rgba(79, 70, 229, 0.12);
     border-color: rgba(79, 70, 229, 0.35);
     color: var(--text-primary);
 }

 .blog-page.next,
 .blog-page.prev {
     gap: 6px;
 }

 .blog-post-meta {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 10px;
     color: var(--text-secondary);
     font-size: 13px;
     font-weight: 700;
 }

 .blog-hero--detail .blog-post-meta,
 .blog-hero--detail .blog-card-tags {
     display: none;
 }

 .blog-article {
     max-width: 760px;
     margin: 0 auto;
     background: transparent;
     border: none;
     border-radius: 0;
     padding: 0;
     box-shadow: none;
 }

 .blog-article h2 {
     font-size: 26px;
     font-weight: 500;
     letter-spacing: -0.005em;
     color: var(--text-primary);
     margin-top: 28px;
     margin-bottom: 10px;
 }

 .blog-article h3 {
     font-size: 20px;
     font-weight: 700;
     letter-spacing: -0.003em;
     color: var(--text-primary);
     margin-top: 18px;
     margin-bottom: 8px;
 }

 .blog-article h2:first-child {
     margin-top: 0;
 }

 .blog-article p {
     font-size: 16px;
     color: var(--text-secondary);
     line-height: 1.85;
     margin-bottom: 14px;
 }

 .blog-article > *:last-child {
     margin-bottom: 0;
 }

 .blog-article a {
     color: var(--primary);
     text-decoration: underline;
     text-underline-offset: 3px;
 }

 .blog-article a:hover {
     color: var(--text-primary);
 }

 .blog-article ul,
 .blog-article ol {
     margin: 0 0 14px;
     padding-left: 18px;
 }

 .blog-article ul {
     list-style: disc;
 }

 .blog-article ol {
     list-style: decimal;
 }

 .blog-article li {
     font-size: 15px;
     color: var(--text-secondary);
     line-height: 1.85;
     margin-bottom: 10px;
 }

 .blog-faq {
     max-width: 760px;
     margin: 10px auto 0;
     padding: 20px 0px 0px;
 }

 .blog-recommended {
     max-width: 760px;
     margin: 10px auto 0;
     padding: 20px 0px;
 }

 .blog-faq h2,
 .blog-recommended h2 {
     font-size: 24px;
     font-weight: 600;
     letter-spacing: -0.005em;
     margin-bottom: 10px;
     color: var(--text-primary);
 }

 .blog-faq-item {
     border: 1px solid var(--border);
     border-radius: 14px;
     padding: 12px 14px;
     background: var(--bg-primary);
     margin-bottom: 10px;
 }

 .blog-faq-question {
     font-size: 16px;
     font-weight: 600;
     color: var(--text-primary);
     cursor: pointer;
 }

 .blog-faq-answer {
     margin-top: 10px;
 }

 .blog-faq-answer p {
     font-size: 15px;
     color: var(--text-secondary);
     line-height: 1.85;
     margin-bottom: 12px;
 }

 .blog-recommended-list {
     margin: 0;
     padding-left: 18px;
 }

 .blog-recommended-list li {
     margin-bottom: 10px;
 }

 .blog-recommended-list a {
     color: var(--primary);
     text-decoration: underline;
     text-underline-offset: 3px;
 }

 .blog-recommended-list a:hover {
     color: var(--text-primary);
 }

 .blog-callout {
     border: none;
     border-left: 4px solid rgba(79, 70, 229, 0.35);
     background: rgba(79, 70, 229, 0.06);
     padding: 16px 18px;
     border-radius: 14px;
     color: var(--text-secondary);
     font-size: 15px;
     line-height: 1.8;
 }

 .blog-callout strong {
     margin-right: 6px;
 }

 body.dark-mode .blog-hero {
     background: linear-gradient(180deg, rgba(79, 70, 229, 0.14) 0%, rgba(79, 70, 229, 0.04) 60%, #0F172A 100%);
 }

 body.dark-mode .blog-body {
     background: #0F172A;
 }

 body.dark-mode .blog-card,
 body.dark-mode .blog-article,
 body.dark-mode .blog-page {
     background: #1E293B;
     border-color: #334155;
 }

 body.dark-mode .blog-article {
     background: transparent;
     border-color: transparent;
 }

 body.dark-mode .blog-card-link:hover {
     color: #A78BFA;
 }

 body.dark-mode .blog-back:hover {
     color: #F9FAFB;
 }

 body.dark-mode .blog-tag {
     background: rgba(79, 70, 229, 0.2);
     color: #A78BFA;
 }

 body.dark-mode .blog-callout {
     border-color: rgba(167, 139, 250, 0.25);
     background: rgba(79, 70, 229, 0.12);
 }

 @media (max-width: 1024px) {
     .blog-list {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 640px) {
     .blog-list {
         grid-template-columns: 1fr;
     }

     .blog-card-media {
         height: 140px;
     }
 }

/* Mobile responsive */
@media (max-width: 768px) {
    .upgrade-banner {
        position: relative !important;
        top: auto !important;
        margin-top: 73px !important;
        max-height: none !important;
    }

    .upgrade-banner-container {
        padding: 16px 0 !important;
        gap: 12px !important;
    }

    .upgrade-banner-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .upgrade-banner-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .upgrade-banner-title {
        font-size: 14px !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    .upgrade-banner-text {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .upgrade-banner-close {
        width: 28px !important;
        height: 28px !important;
    }

    .upgrade-banner-close svg {
        width: 14px !important;
        height: 14px !important;
    }

     .blog-hero {
         padding: 108px 0 42px;
     }

     .blog-hero-title {
         font-size: 34px;
     }

     .blog-hero-subtitle {
         font-size: 15px;
     }

     .blog-card-title {
         font-size: 18px;
     }

     .blog-article {
         padding: 22px;
     }
}
