/* ===== FilingsForU.com — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
    background: #f8fafc;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ---------- CSS Variables ---------- */
:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a5f;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --amber-500: #f59e0b;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, .12);
    --transition: all .3s ease;
    --max-width: 1240px;
}

/* ---------- Utility ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--blue-600), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: .3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-600), #4f46e5);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, .45);
}

.btn-white {
    background: #fff;
    color: var(--slate-800);
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .6);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}

/* ---------- Navigation ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, .6);
    transition: var(--transition);
}

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

.navbar-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--blue-600);
    letter-spacing: -.5px;
}

.navbar-brand span {
    color: var(--slate-800);
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--blue-600);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-600);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--blue-600);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    transition: var(--transition);
    border-radius: 2px;
}

/* ---------- Hero Section ---------- */
.hero {
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e3a5f 50%, #1e40af 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, .15) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, .1) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.hero-text h1 span {
    color: #60a5fa;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
}

.hero-trust-item .trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-trust-item .trust-icon svg {
    width: 18px;
    height: 18px;
    stroke: #60a5fa;
    fill: none;
}

/* Hero Form Card */
.hero-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-xl);
    color: var(--slate-800);
}

.hero-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-form-card .form-subtitle {
    font-size: 14px;
    color: var(--slate-600);
    margin-bottom: 24px;
}

.hero-form-card .form-group {
    margin-bottom: 16px;
}

.hero-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--slate-50);
    outline: none;
}

.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
    background: #fff;
}

.hero-form-card .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    margin-top: 8px;
}

/* Phone Input with +91 Prefix */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius);
    background: var(--slate-50);
    overflow: hidden;
    transition: var(--transition);
}

.phone-input-wrapper:focus-within {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
    background: #fff;
}

.phone-prefix {
    padding: 12px 12px 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-600);
    background: var(--slate-100);
    border-right: 1.5px solid var(--slate-200);
    white-space: nowrap;
    user-select: none;
}

.phone-input-wrapper input[type="tel"] {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    width: 100%;
    min-width: 0;
}

.phone-input-wrapper input[type="tel"]:focus {
    border: none !important;
    box-shadow: none !important;
}

/* Footer phone input dark variant */
.footer-form .phone-input-wrapper {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
}

.footer-form .phone-input-wrapper:focus-within {
    border-color: var(--blue-500);
    background: rgba(255, 255, 255, .08);
}

.footer-form .phone-prefix {
    color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .08);
    border-right-color: rgba(255, 255, 255, .12);
}

.footer-form .phone-input-wrapper input[type="tel"] {
    color: #fff;
}

.footer-form .phone-input-wrapper input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, .35);
}

/* ---------- Services Section ---------- */
.services-section {
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--slate-800);
}

.services-header p {
    font-size: 17px;
    color: var(--slate-600);
    max-width: 560px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 48px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.category-label.setup {
    background: #dbeafe;
    color: var(--blue-700);
}

.category-label.tax {
    background: #d1fae5;
    color: #065f46;
}

.category-label.support {
    background: #fef3c7;
    color: #92400e;
}

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

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--slate-200);
    background: #fff;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    border-color: var(--blue-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke-width: 1.8;
}

.service-card .card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--slate-800);
}

.service-card .card-body p {
    font-size: 13px;
    color: var(--slate-600);
    line-height: 1.55;
}

.service-card .card-arrow {
    position: absolute;
    top: 24px;
    right: 20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--blue-600);
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* ---------- Start Business Section ---------- */
.start-business {
    background: linear-gradient(135deg, var(--slate-900), #1e3a5f);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.start-business::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, .1), transparent 50%);
}

.start-business .container {
    position: relative;
    z-index: 2;
}

.start-business-header {
    text-align: center;
    margin-bottom: 56px;
}

.start-business-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 14px;
}

.start-business-header h2 span {
    color: #60a5fa;
}

.start-business-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, .7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.step-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px);
}

.step-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-600), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px;
    color: #fff;
}

.step-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
}

.start-business-cta {
    text-align: center;
}

/* ---------- FAQ Section ---------- */
.faq-section {
    background: var(--slate-50);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--slate-800);
}

.faq-header p {
    font-size: 17px;
    color: var(--slate-600);
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1.5px solid var(--slate-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--blue-500);
    box-shadow: 0 4px 15px rgba(37, 99, 235, .1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-800);
    transition: var(--transition);
    gap: 16px;
}

.faq-question:hover {
    color: var(--blue-600);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--blue-600);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--slate-600);
    fill: none;
    transition: var(--transition);
}

.faq-item.active .faq-icon svg {
    stroke: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--slate-900);
    color: rgba(255, 255, 255, .7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.footer-brand h3 span {
    color: var(--blue-500);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--blue-600);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, .7);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-size: 14px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--blue-500);
}

.footer-form h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-form .form-group {
    margin-bottom: 12px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, .35);
}

.footer-form input:focus,
.footer-form textarea:focus {
    border-color: var(--blue-500);
    background: rgba(255, 255, 255, .08);
}

.footer-form textarea {
    resize: vertical;
    min-height: 70px;
}

.footer-form .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}

/* ---------- Floating CTA ---------- */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue-600), #4f46e5);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, .4);
    transition: var(--transition);
}

.floating-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, .5);
}

.floating-cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
}

/* ---------- Service Page Specific ---------- */
.service-hero {
    background: linear-gradient(135deg, var(--slate-900), #1e3a5f, #1e40af);
    color: #fff;
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, .12), transparent 60%);
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.service-hero-info h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.service-hero-info .service-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 28px;
}

.service-hero-info .features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.feature-item .feature-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--emerald-500);
    fill: none;
}

.feature-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
}

/* Service Page Content */
.service-content {
    background: var(--slate-50);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.service-main h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--slate-800);
}

.service-main h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 14px;
    color: var(--slate-800);
}

.service-main p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-main ul {
    padding-left: 0;
    margin-bottom: 20px;
}

.service-main ul li {
    padding: 8px 0 8px 28px;
    font-size: 14px;
    color: var(--slate-600);
    position: relative;
    line-height: 1.6;
}

.service-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-600);
}

/* Sidebar on service pages */
.service-sidebar {
    position: sticky;
    top: 88px;
}

.sidebar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1.5px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--slate-800);
}

.sidebar-card ul li {
    margin-bottom: 8px;
}

.sidebar-card ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--slate-600);
    transition: var(--transition);
}

.sidebar-card ul li a:hover {
    background: var(--blue-50);
    color: var(--blue-600);
}

/* Service Page FAQs */
.service-faq {
    background: #fff;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, .5);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    font-size: 11px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

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

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

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

    .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
        border-top: 1px solid var(--slate-200);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section-padding {
        padding: 56px 0;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}