/* ==========================================================================
   TeleVäst Consulting AB - Klassisk, Gedigen & Tidsenlig B2B/B2C
   Ren, professionell svensk säkerhetsestetik
   ========================================================================== */

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

:root {
    /* Klassiska Företagsfärger - Djup Marinblå & Varm Mässing */
    --navy-primary: #13293D;
    --navy-dark: #0B1926;
    --navy-light: #1B365D;
    --navy-surface: #1E3A5F;
    
    /* Ljusa / Neutrala färger */
    --bg-main: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-gray-light: #F1F5F9;
    --bg-gray-mid: #E2E8F0;
    
    /* Textfärger */
    --text-main: #1E293B;
    --text-muted: #475569;
    --text-light: #64748B;
    --text-white: #FFFFFF;
    
    /* Akcentfärger - Tidlös Mässing / Guld & Stålblå */
    --accent-brass: #BA8E23;
    --accent-brass-light: #D4AF37;
    --accent-brass-dark: #9A7B2C;
    --accent-blue: #2C5D88;
    --accent-green: #16A34A;
    
    /* Skuggor */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
    --shadow-hero: 0 20px 40px rgba(11, 25, 38, 0.35);
    
    /* Kanter & Radier */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --border-subtle: 1px solid #E2E8F0;
    
    /* Övergångar */
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy-primary);
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Badges / Etiketter */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.badge-brass {
    background-color: rgba(186, 142, 35, 0.14);
    color: var(--accent-brass-light);
    border: 1px solid rgba(186, 142, 35, 0.35);
}

.badge-blue {
    background-color: rgba(44, 93, 136, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(44, 93, 136, 0.25);
}

.badge-green {
    background-color: rgba(22, 163, 74, 0.12);
    color: #15803D;
    border: 1px solid rgba(22, 163, 74, 0.3);
}

/* ================= Top Bar ================= */
.topbar {
    background-color: var(--navy-dark);
    color: #CBD5E1;
    font-size: 0.86rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.15);
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-item svg {
    color: var(--accent-brass-light);
    flex-shrink: 0;
}

.topbar-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #CBD5E1;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

.topbar-badge-pill svg {
    color: var(--accent-brass-light);
    flex-shrink: 0;
}

.topbar-badge-pill strong {
    color: #FFF;
    font-weight: 600;
}

.clickable-topbar-link {
    color: #FFF;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.5);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.clickable-topbar-link:hover {
    color: var(--accent-brass-light);
    text-decoration-color: var(--accent-brass-light);
}

/* ================= Navigation Header ================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    border-bottom: var(--border-subtle);
    transition: var(--transition);
}

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

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

/* Snygg TVCAB Logotyp */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    min-width: 62px;
    height: 44px;
    padding: 0 10px;
    background-color: var(--navy-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.08em;
    border: 2px solid var(--accent-brass);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    background-color: var(--navy-light);
    border-color: var(--accent-brass-light);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--navy-primary);
    letter-spacing: -0.01em;
}

.logo-title span {
    color: var(--accent-blue);
    font-weight: 600;
}

.logo-title .ab-tag {
    font-weight: 800;
    color: var(--navy-primary);
    margin-left: 2px;
}

.logo-subtitle {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 600;
}

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

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

.nav-link:hover {
    color: var(--accent-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--navy-primary);
    color: var(--bg-white);
    border: 2px solid var(--navy-primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-brass {
    background-color: var(--accent-brass);
    color: var(--bg-white);
    border: 2px solid var(--accent-brass);
    box-shadow: var(--shadow-sm);
}

.btn-brass:hover {
    background-color: var(--accent-brass-dark);
    border-color: var(--accent-brass-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

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

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--navy-primary);
    font-size: 1.6rem;
    cursor: pointer;
}

/* ================= Hero Section ================= */
.hero {
    background-color: var(--navy-primary);
    color: var(--text-white);
    padding: 70px 0 90px;
    position: relative;
    border-bottom: 4px solid var(--accent-brass);
}

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

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin: 18px 0;
    color: var(--text-white);
    font-weight: 800;
}

.hero-title span {
    color: var(--accent-brass-light);
}

/* Hook phrase callout banner */
.hero-hook-box {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent-brass);
    padding: 18px 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-hook-box h3 {
    color: #FFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.hero-hook-box p {
    color: #E2E8F0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.12rem;
    color: #CBD5E1;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 38px;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #F1F5F9;
    font-weight: 500;
}

.trust-item svg {
    color: var(--accent-brass-light);
    flex-shrink: 0;
}

/* Hero Image Card (Klassisk B2B-bild) */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    background-color: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hero);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

.image-caption-badge {
    background-color: var(--navy-dark);
    color: #FFF;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--accent-brass);
}

.caption-text h4 {
    color: #FFF;
    font-size: 1rem;
    margin-bottom: 2px;
}

.caption-text p {
    color: #94A3B8;
    font-size: 0.82rem;
}

/* ================= Stats Bar ================= */
.stats-bar {
    background-color: var(--bg-white);
    padding: 44px 0;
    border-bottom: var(--border-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-card {
    padding: 16px;
    border-right: 1px solid var(--bg-gray-mid);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--navy-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.stat-sublabel {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ================= Section Headers ================= */
.section-padding {
    padding: 90px 0;
}

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

.section-title {
    font-size: 2.4rem;
    margin: 16px 0;
    color: var(--navy-primary);
}

.section-title.dark {
    color: var(--text-white);
}

.section-subtitle {
    font-size: 1.12rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.section-subtitle.dark {
    color: #E2E8F0;
}

/* ================= Services Section ================= */
.services-section {
    background-color: var(--bg-gray-light);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: var(--border-subtle);
    border-top: 4px solid var(--navy-primary);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-brass);
}

.service-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--navy-primary);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.service-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 22px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--bg-gray-mid);
    padding-top: 18px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-main);
}

.service-feature-item svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* ================= Om TeleVäst Consulting AB ("Vi på TeleVäst") ================= */
.about-section {
    background-color: var(--bg-white);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 8px solid var(--bg-gray-light);
    box-shadow: var(--shadow-md);
}

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

.expert-badge-overlay {
    background-color: var(--navy-primary);
    color: var(--text-white);
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.expert-info h4 {
    font-size: 1.1rem;
    color: var(--text-white);
}

.expert-info p {
    font-size: 0.85rem;
    color: var(--accent-brass-light);
}

.about-content h2 {
    font-size: 2.5rem;
    margin: 16px 0 24px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.75;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 28px 0;
}

.highlight-box {
    background-color: var(--bg-gray-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: var(--border-subtle);
}

.highlight-box h4 {
    font-size: 1.05rem;
    color: var(--navy-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ================= Interaktiv Kontaktbox & E-postguide ================= */
.offer-guide-section {
    background-color: var(--navy-primary);
    color: var(--text-white);
}

.offer-guide-card {
    background-color: var(--bg-white);
    color: var(--text-main);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.05fr 1.15fr;
    gap: 48px;
    border: 1px solid var(--bg-gray-mid);
}

.guide-step-group {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-primary);
    display: flex;
    justify-content: space-between;
}

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

.option-btn {
    background-color: var(--bg-gray-light);
    border: 1px solid var(--bg-gray-mid);
    padding: 13px 15px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-btn:hover {
    background-color: #E2E8F0;
}

.option-btn.active {
    background-color: var(--navy-primary);
    border-color: var(--navy-primary);
    color: var(--text-white);
}

.form-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy-primary);
    margin-bottom: 4px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
    border: 1px solid #CBD5E1;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 3px rgba(19, 41, 61, 0.12);
}

/* Right Column: Pre-filled Auto Message Textarea & Actions */
.auto-message-wrapper {
    background-color: var(--navy-dark);
    color: var(--text-white);
    border-radius: var(--radius-md);
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.message-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.message-header h3 {
    font-size: 1.35rem;
    color: var(--accent-brass-light);
    margin-bottom: 4px;
}

.message-header p {
    font-size: 0.88rem;
    color: #CBD5E1;
}

.message-textarea {
    width: 100%;
    min-height: 230px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background-color: #0F1F30;
    border: 2px solid #284462;
    color: #F8FAFC;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: vertical;
    transition: var(--transition);
    margin-bottom: 20px;
}

.message-textarea:focus {
    outline: none;
    border-color: var(--accent-brass);
    box-shadow: 0 0 0 3px rgba(186, 142, 35, 0.25);
}

.action-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Toast */
.form-toast {
    display: none;
    margin-top: 18px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background-color: #DCFCE7;
    border: 1px solid #16A34A;
    color: #166534;
    font-weight: 600;
    text-align: center;
    font-size: 0.92rem;
}

/* ================= Arbetsprocessen ================= */
.process-section {
    background-color: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    background-color: var(--bg-gray-light);
    padding: 34px 26px;
    border-radius: var(--radius-md);
    border: var(--border-subtle);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
    border-color: var(--navy-primary);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: var(--navy-primary);
    color: var(--accent-brass-light);
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--navy-primary);
}

.step-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* ================= Direkt Kontakt / Företagsfakta ================= */
.contact-footer-section {
    background-color: var(--bg-white);
    padding: 70px 0;
    border-top: var(--border-subtle);
}

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

.contact-fact-card {
    background-color: var(--bg-gray-light);
    padding: 32px;
    border-radius: var(--radius-md);
    border: var(--border-subtle);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-fact-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background-color: var(--navy-primary);
    color: var(--accent-brass-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-fact-content h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--navy-primary);
}

.contact-fact-content p, .contact-fact-content a {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-fact-content a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* ================= Footer ================= */
.footer {
    background-color: #060E16;
    color: #94A3B8;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.08rem;
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: var(--accent-brass-light);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    font-size: 0.88rem;
    text-align: center;
}

/* ================= Responsiv design ================= */
@media (max-width: 1024px) {
    .hero-grid, .about-grid, .offer-guide-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid, .services-grid, .process-steps, .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .topbar-right {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-grid {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .stats-grid, .services-grid, .process-steps, .options-grid, .contact-cards-grid, .action-row, .form-input-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
