/* Import Premium Jost and Outfit Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for Premium Design System */
:root {
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Jost', sans-serif;

    /* Colors */
    --color-primary: #6a1b91;
    --color-secondary: #2d004d;
    --color-accent: #b0126a;
    --color-accent-hover: #d81b85;
    
    /* Theme - Light Mode default */
    --bg-primary: #fbf9fc;
    --bg-secondary: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-glass: rgba(106, 27, 145, 0.08);
    --border-light: rgba(106, 27, 145, 0.12);
    --text-primary: #2d004d;
    --text-secondary: #584a63;
    --text-muted: #8e7f99;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --grad-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    --grad-text: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-accent-hover) 100%);
    --grad-bg-mesh: radial-gradient(circle at 80% 20%, rgba(176, 18, 106, 0.08) 0%, transparent 40%),
                    radial-gradient(circle at 10% 80%, rgba(106, 27, 145, 0.08) 0%, transparent 40%);

    /* Shadows */
    --shadow-sm: 0 4px 10px rgba(45, 0, 77, 0.04);
    --shadow-md: 0 10px 25px rgba(45, 0, 77, 0.06);
    --shadow-lg: 0 20px 40px rgba(45, 0, 77, 0.1);
    --shadow-glow: 0 0 30px rgba(106, 27, 145, 0.2);

    /* Radius & Transitions */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode */
body.dark {
    --bg-primary: #0a0312;
    --bg-secondary: #12091c;
    --bg-glass: rgba(18, 9, 28, 0.85);
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-light: rgba(255, 255, 255, 0.08);
    --text-primary: #f5f2f7;
    --text-secondary: #cfc6d4;
    --text-muted: #8e7f99;
    --grad-text: linear-gradient(135deg, #ffffff 0%, #dcd7e0 50%, var(--color-accent-hover) 100%);
    --grad-bg-mesh: radial-gradient(circle at 80% 20%, rgba(176, 18, 106, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 10% 80%, rgba(106, 27, 145, 0.15) 0%, transparent 50%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
}

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

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

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

.section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Pill Badges */
.badge-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--grad-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Floating Glassmorphic Header Navbar */
.header {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
    padding: 16px 0;
}

.header.scrolled {
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo-link {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(106, 27, 145, 0.05); /* Subtle brand color tint */
    border: 1px solid rgba(106, 27, 145, 0.08);
    border-radius: 50px;
    transition: var(--transition);
}

.logo-link:hover {
    background: rgba(106, 27, 145, 0.1);
    transform: translateY(-1px);
}

body.dark .logo-link {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark .logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.logo-img {
    height: 40px;
    width: auto !important;
    max-width: 280px;
    object-fit: contain;
    transition: var(--transition);
}

body.dark .logo-img {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

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

body.dark .nav-link:hover, body.dark .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

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

.theme-toggle-btn .sun-icon {
    display: none;
}

body.dark .theme-toggle-btn .moon-icon {
    display: none;
}

body.dark .theme-toggle-btn .sun-icon {
    display: block;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--color-primary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-pill {
    border-radius: 50px !important;
    padding: 12px 36px !important;
}

/* Hero Section (Mesh Background) */
.hero {
    padding: 160px 0 100px 0;
    background: var(--grad-bg-mesh);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-logo-img {
    height: 72px;
    margin-bottom: 32px;
    object-fit: contain;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}

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

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-banner-img {
    border-radius: var(--radius-md);
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    box-shadow: 0 20px 40px rgba(45, 0, 77, 0.15);
    transition: var(--transition);
}

.hero-banner-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 60px rgba(45, 0, 77, 0.25);
}

/* Full Width Sub-Hero Logo Banner */
.sub-hero-logo-banner {
    background: var(--grad-primary);
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.sub-hero-logo-img {
    height: 52px;
    margin: 0 auto;
    object-fit: contain;
}

/* App Promo Banner (Deep Space Gradient) */
.app-promo-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.app-promo-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(216, 27, 133, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    top: -100px;
    right: -100px;
}

.app-promo-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-title-white {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.promo-badge-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.play-store-svg-icon {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.promo-subtext {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
}

.promo-phone-mockup {
    display: flex;
    justify-content: center;
}

/* Float-Shadow mockup presentation */
.promo-phone-mockup img {
    max-width: 290px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.promo-phone-mockup img.promo-play-store-img {
    max-width: 320px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

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

/* Steps Section (Just 3 Steps) */
.steps-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 50px;
}

.step-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.step-badge {
    background-color: var(--color-primary);
    color: #ffffff;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.step-screenshot-wrapper {
    width: 145px;
    height: 295px;
    margin: 0 auto 28px auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(106, 27, 145, 0.12);
    box-shadow: 0 12px 28px rgba(45, 0, 77, 0.12), 0 2px 8px rgba(45, 0, 77, 0.06);
    transition: var(--transition);
}

.step-card:hover .step-screenshot-wrapper {
    box-shadow: 0 20px 40px rgba(45, 0, 77, 0.22), 0 4px 14px rgba(45, 0, 77, 0.08);
    transform: translateY(-4px);
}

body.dark .step-screenshot-wrapper {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

body.dark .step-card:hover .step-screenshot-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.step-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Popular Services Section (Deep Dark Space) */
.services-section-dark {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #16002b 100%);
    color: #ffffff;
    padding: 100px 0;
}

.services-section-dark .section-title {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.services-dark-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card-dark {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.service-card-dark:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

.service-dark-img-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 28px auto;
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.service-card-dark:hover .service-dark-img-wrapper {
    border-color: var(--color-accent-hover);
    box-shadow: 0 0 20px rgba(216, 27, 133, 0.4);
    transform: scale(1.05);
}

.service-dark-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-dark-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-dark-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Pricing Estimator Tool */
.estimator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 50px;
}

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

.selector-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.selector-option:hover {
    border-color: rgba(106, 27, 145, 0.15);
    transform: translateX(4px);
}

.selector-option.selected {
    border-color: var(--color-primary);
    background: rgba(106, 27, 145, 0.05);
}

.option-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.option-icon {
    font-size: 1.6rem;
    color: var(--color-primary);
    background: var(--bg-primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

body.dark .option-icon {
    background: var(--bg-secondary);
}

.option-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.option-select-indicator {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.selector-option.selected .option-select-indicator {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.selector-option.selected .option-select-indicator::after {
    content: '✓';
    font-size: 0.8rem;
    font-weight: bold;
}

.estimator-calculator {
    padding: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.estimator-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

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

.calculator-field label {
    font-weight: 700;
    font-size: 0.95rem;
}

.calculator-field select {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.calculator-field select:focus {
    border-color: var(--color-primary);
}

.price-display-box {
    margin-top: 15px;
    padding: 24px;
    background: rgba(106, 27, 145, 0.05);
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border-light);
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
}

body.dark .price-value {
    color: #ffffff;
}

.price-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Subpages Specific styling */
.subpage-hero {
    padding: 130px 0 80px 0;
    background: var(--grad-primary);
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
}

.subpage-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.subpage-subtitle {
    opacity: 0.9;
    font-size: 1.05rem;
}

.subpage-content {
    padding: 60px 0 100px 0;
    background-color: var(--bg-primary);
}

.subpage-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}

.glass-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

body.dark .glass-card {
    background-color: var(--bg-glass);
}

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

.policy-card, .delete-form-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

body.dark .policy-card, body.dark .delete-form-card {
    background-color: var(--bg-glass);
}

.policy-section {
    margin-bottom: 36px;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-primary);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

body.dark .policy-section h2 {
    color: #ffffff;
}

.policy-section p, .policy-section ul {
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.policy-section ul {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-highlight {
    background-color: var(--bg-primary);
    border-left: 4px solid var(--color-primary);
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

body.dark .form-group input, body.dark .form-group textarea, body.dark .form-group select {
    background: var(--bg-secondary);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(106, 27, 145, 0.1);
}

.delete-status-msg {
    margin-top: 15px;
    padding: 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    display: none;
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Footer Section */
.footer {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 80px 0 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-box {
    margin-bottom: 36px;
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    height: 76px;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social-icon:hover {
    background-color: #ffffff;
    color: var(--color-secondary);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

/* Responsive Viewports */
@media (max-width: 991px) {
    .hero-grid, .app-promo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title, .promo-title-white {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-banner-img {
        transform: none;
    }

    .hero-banner-img:hover {
        transform: none;
    }

    .app-promo-grid {
        gap: 36px;
    }

    .promo-badge-box {
        align-items: center;
    }

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

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

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

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-container {
        justify-content: center;
        position: relative;
    }

    .logo-link {
        margin: 0 auto;
    }

    .header .theme-toggle-btn, .header .nav-actions .btn {
        display: none;
    }

    .nav-actions {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        gap: 0;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--color-secondary);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        align-items: center;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        color: #ffffff !important;
    }

    .services-dark-grid {
        grid-template-columns: 1fr;
    }

    .policy-card, .delete-form-card {
        padding: 24px;
    }
}
