/* ============================================================================
   MISS QUIZ - HUVUDSTIL
   ============================================================================ */
/* assets\css\style.css */

/* === RESET & BASICS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: #333;
}

/* === HEADER & NAVIGATION === */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(102, 126, 234, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.75rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-menu .login-btn {
    background: white;
    color: #667eea;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
}

.mobile-menu .login-btn:hover {
    background: rgba(255,255,255,0.9);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    filter: blur(3px);
    z-index: 1;
}

.hero-video-iframe {
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#varfor, #hur {
    scroll-margin-top: 80px;
}

/* === UNDERSIDOR (publika) === */
.page-container {
    max-width: 1400px;
	width: 100%;
    margin: 0 auto;
    padding: 140px 20px 20px;
}

/* === CONTENT SECTIONS === */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
	/* height: 100vh; */
}

/* Section 1 - Varför Miss Quiz */
.section-why {
    background: #f8f9fa;
}

.section-text h2 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-text > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
}

.feature-text h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Full Width Image Section */
.section-fullwidth-image {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

/* Section 2 - Hur det fungerar */
.section-how {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.step:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: all 0.3s;
}

.step:hover .step-number {
    background: white;
    color: #667eea;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Section 3 - 100% Digitalt */
.section-digital {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-digital h2 {
    color: white;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-digital .section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-digital p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.2);
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-card li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.comparison-card li::before {
    content: '✓';
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-old li::before {
    content: '✗';
    color: #ff6b6b;
}

/* === FOOTER === */
footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-content::before {
    content: '';
    position: absolute;
    left: calc(33.33% - 1.5rem);
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.footer-content::after {
    content: '';
    position: absolute;
    left: calc(66.66% - 1.5rem);
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 1.8;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* === SECTION 4 - KONTAKT === */
.section-contact {
    background: #f8f9fa;
}

.section-contact .section-inner {
    padding-top: 10rem;
}

.section-contact {
    scroll-margin-top: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-info-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 0.25rem;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #667eea;
}

.contact-form-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-group {
    margin-bottom: 1.25rem;
}

.contact-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #999;
    margin-bottom: 0.4rem;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    cursor: pointer;
}

.contact-form-group select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.contact-form-group input.has-error,
.contact-form-group textarea.has-error {
    border-color: #dc3545;
}

.contact-field-error {
    display: block;
    font-size: 0.78rem;
    color: #dc3545;
    margin-top: 0.3rem;
    font-weight: 600;
}

.contact-alert {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-alert--success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-alert--error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-alert-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================================================
   HIGHSCORE / 20-I-TOPP
   ============================================================================ */
.hs-search {
    width: 100%;
    padding: 10px 16px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #444;
    background: #1a1a2e;
    color: #fff;
    margin-bottom: 24px;
    box-sizing: border-box;
}
.hs-theme-img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    border-radius: 8px;
}
.hs-theme-img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: #2a2a3e;
    border-radius: 8px;
    height: 150px;
}
.hs-theme-img-wrap {
    position: relative;
    margin-bottom: 12px;
}
.hs-theme-img-wrap .hs-inactive {
    position: absolute;
    bottom: 8px;
    left: 8px;
}
.hs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hs-card {
    background: #1a1a2e;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #333;
}
.hs-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.hs-theme-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}
.hs-inactive {
    font-size: 0.72rem;
    background: #5a3a00;
    color: #ffaa44;
    border-radius: 4px;
    padding: 2px 7px;
}
.hs-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.hs-table td {
    padding: 5px 4px;
    color: #ccc;
    border-bottom: 1px solid #2a2a3e;
	vertical-align: top;
}
.hs-table tr:last-child td {
    border-bottom: none;
}
.hs-table .td-rank {
    color: #888;
    width: 24px;
}
.hs-table .td-team {
    font-weight: 600;
    color: #fff;
}
.hs-table .td-team-light {
    color: #333;
}
.hs-table .td-date-light {
    color: #333;
	vertical-align: middle;
}
.hs-table .td-score {
    text-align: right;
    color: #f0c040;
    font-weight: bold;
    white-space: nowrap;
    width: 60px;
	padding-right: 2rem;
}
.hs-table .td-venue {
    color: #aaa;
    font-size: 0.8rem;
    text-align: right;
    max-width: 130px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.td-team-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}
.td-team-name {
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 150px;
}
.hs-city-tag {
    font-size: 11px;
    color: #efefef;
    background: rgb(0 0 249 / 85%);
    border-radius: 4px;
    padding: 1px 6px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
    flex-shrink: 0;
}
.td-team-city {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}
.td-venue-city {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}
.hs-more-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 0.82rem;
    cursor: pointer;
    margin-top: 8px;
    padding: 0;
    text-decoration: underline;
}
.hs-rows-extra {
    display: none;
}
.no-results {
    color: #888;
    text-align: center;
    margin-top: 40px;
}

/* ============================================================================
   MITT LAG
   ============================================================================ */
.ml-card {
    max-width: 700px;
    margin-bottom: 2rem;
}
.ml-card--danger {
    border: 1px solid #f5c6cb;
}
.ml-logout-wrap {
    margin-bottom: 1rem;
}
.ml-logout-link {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: #667eea;
    color: white !important;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}
.ml-logout-link:hover {
    background: #5568d3;
}
.ml-section-title {
    color: #667eea;
    margin-bottom: 1rem;
}
.ml-section-title--danger {
    color: #dc3545;
}
.ml-team-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.25rem;
}
.ml-team-meta {
    color: #888;
    font-size: 0.9rem;
}
.ml-empty {
    color: #888;
    margin-bottom: 1rem;
}
.hs-table .ml-th {
    color: #888;
    font-size: 0.8rem;
    padding-bottom: 8px;
}
.hs-table .ml-th--right {
    text-align: right;
    padding-right: 2rem;
}
.ml-th--center {
    text-align: center;
}
.hs-table .td-rank-light {
    color: #555;
    width: 24px;
    vertical-align: middle;
}
.hs-table .td-placement-light {
    color: #555;
    vertical-align: middle;
    padding-left: 1rem;
}
.hs-table .td-venue-light {
    color: #555;
    font-size: 0.85rem;
    vertical-align: middle;
}
.hs-table .td-team-light,
.hs-table .td-score,
.hs-table .td-rank-light,
.hs-table .td-date-light {
    vertical-align: middle;
}
.hs-table .td-rank-center {
    text-align: center;
    vertical-align: middle;
}
.ml-passkey-details {
    margin-bottom: 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}
.ml-passkey-summary {
    cursor: pointer;
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
}
.ml-passkey-info {
    margin-top: 0.75rem;
}
.ml-passkey-info-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.ml-passkey-info-text:last-child {
    margin-bottom: 0;
}
.ml-passkey-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
.ml-passkey-row {
    border-bottom: 1px solid #e0e0e0;
}
.ml-passkey-device {
    padding: 8px 4px;
    color: #555;
    font-size: 0.9rem;
}
.ml-passkey-created {
    color: #888;
    font-size: 0.8rem;
}
.ml-passkey-sync {
    color: #888;
    font-size: 0.75rem;
}
.ml-passkey-last-used {
    padding: 8px 4px;
    color: #888;
    font-size: 0.85rem;
}
.ml-passkey-action {
    padding: 8px 4px;
    text-align: right;
}
.ml-passkey-delete-form {
    display: inline;
}
.ml-passkey-delete-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
}
.ml-btn {
    background: #667eea !important;
    color: white !important;
    border: none;
    cursor: pointer;
}
.ml-feedback {
    display: none;
    margin-top: 1rem;
}
.ml-alert {
    margin-bottom: 1rem;
}
.ml-password-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.3rem;
}
.ml-delete-desc {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.ml-delete-checkbox-wrap {
    margin-bottom: 1.5rem;
}
.ml-delete-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #555;
}
.ml-delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.ml-diploma-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-right: 4px;
}
.ml-diploma-btn:hover {
    background: #f0f0f0;
}
.ml-google-linked {
    color: #4CAF50;
    font-weight: 600;
}
.ml-unlink-form {
    margin-top: 0.75rem;
}
/* === DIPLOM === */
.diploma-city {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.25rem;
}

/* === FLIKAR (mitt lag) === */
.ml-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
    max-width: 700px;
}
.ml-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: inherit;
    transition: color 0.2s;
}
.ml-tab:hover {
    color: #667eea;
}
.ml-tab.active {
    color: #667eea;
    font-weight: bold;
    border-bottom-color: #667eea;
}
.ml-tab-content {
    display: none;
}
.ml-tab-content.active {
    display: block;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

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

    .section-fullwidth-image {
        height: 40vh;
        min-height: 300px;
        background-attachment: scroll;
    }

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

    .section-digital h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }
    header {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .section-text h2 {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content::before,
    .footer-content::after {
        display: none;
    }	
}


@media (max-width: 600px) {
    .hs-grid {
        grid-template-columns: 1fr;
    }
}
