/* ============================================
   EVIDENTIRAJ - Main Stylesheet
   RFID Evidencija Radnog Vremena
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --navy-900: #0a1628;
    --navy-800: #111d35;
    --navy-700: #1a2744;
    --navy-600: #243356;
    --navy-500: #2e4068;
    --navy-400: #3d5280;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #f1f3f8;
    --gray-200: #e2e6ef;
    --gray-300: #c9cfdd;
    --gray-400: #9ba3b8;
    --gray-500: #6b7490;
    --gray-600: #4a5268;
    --gray-700: #374054;
    --text-primary: #0a1628;
    --text-secondary: #4a5268;
    --text-light: #6b7490;
    --text-on-dark: #ffffff;
    --text-on-dark-muted: #c9cfdd;
    --border-color: #e2e6ef;
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 8px 30px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.2s ease;
    --max-width: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.25rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.text-light {
    color: var(--text-on-dark);
}

.text-light p,
.text-light .section-subtitle {
    color: var(--text-on-dark-muted);
}

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

.section {
    padding: 96px 0;
}

.section-sm {
    padding: 64px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    margin-bottom: 16px;
}

.text-light .section-label {
    color: var(--blue-400);
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--blue-600);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: color var(--transition), background var(--transition);
}

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

.nav-cta {
    margin-left: 16px;
}

.header.scrolled .nav-cta {
    background: var(--navy-900);
    color: var(--white);
}

.header.scrolled .nav-cta:hover {
    background: var(--navy-800);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.2);
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 16px 24px 32px;
    z-index: 999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: background var(--transition), color var(--transition);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    background: var(--gray-100);
    color: var(--text-primary);
}

.mobile-nav .btn {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 14px 28px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy-900);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Hero Section --- */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 96px;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--blue-600);
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(100px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--blue-600);
    opacity: 0.04;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual svg {
    width: 100%;
    height: auto;
    max-width: 480px;
}

.hero-label {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue-400);
    background: rgba(37, 99, 235, 0.12);
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 3.5rem;
    line-height: 1.08;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.7;
}

/* Page hero (inner pages) */
.page-hero {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 64px;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: var(--blue-600);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

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

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-on-dark-muted);
    max-width: 560px;
}

/* --- Trust Strip --- */
.trust-strip {
    padding: 48px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.trust-logo img {
    max-height: 48px;
    max-width: 168px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trust-logo img:hover {
    opacity: 1;
}

/* --- Benefits / Feature Cards --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.benefit-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9375rem;
}

/* --- How It Works --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border-color);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    font-size: 0.9375rem;
    max-width: 280px;
    margin: 0 auto;
}

/* --- Stats --- */
.stats-section {
    background: var(--gray-50);
}

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

.stat {
    text-align: center;
    padding: 32px 16px;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--navy-900);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: var(--blue-600);
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(120px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-on-dark-muted);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-content .btn-group {
    justify-content: center;
}

/* --- Feature Grid (Features page) --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9375rem;
}

/* Feature highlight (alternating left/right) */
.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
}

.feature-highlight:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.feature-highlight-visual {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
    overflow: hidden;
}

.feature-highlight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-highlight-visual .multi-location-svg {
    width: 90%;
    height: auto;
}

.feature-highlight-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.feature-highlight-content p {
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.feature-list-item::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--navy-900);
    border-radius: 50%;
    margin-top: 2px;
    position: relative;
}

.feature-list-item::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* checkmark via pseudo - simplified approach */
.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background: var(--navy-900);
    border-radius: 50%;
}

.check-list li::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 7px;
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--blue-600);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--blue-600);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-period {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 4px;
}

.pricing-features {
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--navy-900);
    border-radius: 50%;
}

.pricing-features li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    width: 5px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pricing-card .btn {
    width: 100%;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--gray-50);
}

.comparison-table thead th {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.comparison-table thead th:first-child {
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.9375rem;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table td:not(:first-child),
.comparison-table th:not(:first-child) {
    text-align: center;
}

.table-check {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--navy-900);
    border-radius: 50%;
    position: relative;
}

.table-check::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.table-dash {
    color: var(--gray-300);
    font-size: 1.25rem;
}

/* --- FAQ --- */
.faq-list {
    max-width: 768px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--transition);
}

.faq-icon::before {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.9375rem;
}

/* --- About Page --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-visual {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

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

.value-card {
    padding: 36px 28px;
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    font-size: 1.375rem;
    font-weight: 800;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9375rem;
}

/* Why choose us */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.reason-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.reason-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 800;
    flex-shrink: 0;
}

.reason-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 6px;
}

.reason-card p {
    font-size: 0.9375rem;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

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

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

.form-alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.form-alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 16px;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* --- Footer --- */
.footer {
    background: var(--navy-900);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--navy-600);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.footer-logo span {
    color: var(--blue-400);
}

.footer-desc {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

/* --- Utility Classes --- */
.bg-light {
    background: var(--gray-50);
}

.bg-dark {
    background: var(--navy-900);
}

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

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* --- Methods Tabs (RFID / GPS) --- */
.methods-section {
    padding: 96px 0;
}

.methods-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 4px;
    max-width: 400px;
    margin: 0 auto 48px;
}

.method-tab {
    flex: 1;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.method-tab.active {
    background: var(--navy-900);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.method-panel {
    display: none;
}

.method-panel.active {
    display: block;
}

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

.method-visual {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
    overflow: hidden;
}

.method-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-text h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.method-text p {
    margin-bottom: 24px;
}

/* --- Express Install Banner --- */
.express-banner {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
}

.express-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 96px;
    background: var(--blue-600);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.express-badge-text {
    text-align: center;
    color: var(--white);
    line-height: 1.1;
}

.express-badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.express-badge-unit {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.express-content {
    flex: 1;
}

.express-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.express-content p {
    color: var(--text-on-dark-muted);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.express-items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.express-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
}

.express-item::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--blue-600);
    border-radius: 50%;
    position: relative;
}

.express-cta {
    flex-shrink: 0;
}

/* --- Legal Content Pages --- */
.legal-content {
    max-width: 768px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--navy-900);
    border-radius: 50%;
}

.legal-content a {
    color: var(--blue-600);
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* --- Hero Inline Form --- */
.hero-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    max-width: 400px;
    width: 100%;
}

.hero-form-title {
    color: var(--white);
    font-size: 1.375rem;
    margin-bottom: 8px;
}

.hero-form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

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

.hero-form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9375rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.hero-form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hero-form-input:focus {
    outline: none;
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.hero-form-btn {
    width: 100%;
    margin-top: 4px;
    padding: 16px 36px;
    font-size: 1.0625rem;
}

.hero-form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
    margin-bottom: 0;
}

.hero-form-success {
    text-align: center;
    padding: 20px;
    color: #22c55e;
    font-size: 0.9375rem;
}

.hero-form-success svg {
    margin: 0 auto 8px;
    display: block;
    color: #22c55e;
}

.hero-form-success strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.hero-form-success span {
    color: var(--text-on-dark-muted);
    font-size: 0.875rem;
}

/* --- Hero Form Social Proof --- */
.hero-form-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-form-proof-avatars {
    display: flex;
}

.hero-form-proof-avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-600);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
    margin-left: -8px;
}

.hero-form-proof-avatars span:first-child {
    margin-left: 0;
}

.hero-form-proof-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    line-height: 1.3;
}

.hero-form-proof-text strong {
    color: var(--white);
}

/* --- Hero Stats Inline --- */
.hero-stats-inline {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-on-dark-muted);
    margin-top: 4px;
    font-weight: 500;
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--blue-600);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow var(--transition);
}

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

.testimonial-quote p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* --- Urgency Banner --- */
.urgency-banner {
    background: var(--blue-600);
    padding: 48px 0;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.urgency-text h3 {
    color: var(--white);
    font-size: 1.375rem;
    margin-bottom: 6px;
}

.urgency-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin: 0;
}

.urgency-banner .btn-primary {
    background: var(--white);
    color: var(--blue-600);
    flex-shrink: 0;
}

.urgency-banner .btn-primary:hover {
    background: var(--gray-50);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* --- Pricing More Link --- */
.pricing-more {
    text-align: center;
    margin-top: 32px;
}

/* --- Hero Phone CTA (mobile only) --- */
.hero-phone-cta {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-on-dark-muted);
    transition: color var(--transition);
}

.hero-phone-cta:hover {
    color: var(--white);
}

.hero-phone-cta svg {
    color: var(--blue-400);
    flex-shrink: 0;
}

/* --- Floating Mobile Call Button --- */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--blue-600);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-call-btn:active {
    transform: scale(0.96);
}

.mobile-call-btn svg {
    flex-shrink: 0;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ============================================
   EVIDENTIRAJ - Responsive Styles
   ============================================ */

/* --- Desktop: force-hide mobile-only elements --- */
@media (min-width: 769px) {
    .mobile-call-btn,
    .hero-phone-cta {
        display: none !important;
    }
}

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .section {
        padding: 72px 0;
    }

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

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

    .hero {
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 72px;
    }

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

    .steps-grid {
        gap: 32px;
    }

    .steps-grid::before {
        left: 10%;
        right: 10%;
    }

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

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

    .feature-highlight {
        gap: 40px;
    }

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

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content {
        gap: 40px;
    }

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

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

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

    .footer-grid > *:last-child {
        grid-column: 1 / -1;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
    }

    .method-content {
        gap: 40px;
    }

    .express-banner {
        padding: 36px;
        gap: 28px;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Urgency banner tablet */
    .urgency-content {
        gap: 24px;
    }

    .urgency-text h3 {
        font-size: 1.25rem;
    }
}

/* --- Mobile large (max 768px) --- */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .container {
        padding: 0 20px;
    }

    /* Floating call button visible on mobile */
    .mobile-call-btn {
        display: flex;
    }

    /* Header mobile */
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero mobile - form below text */
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-form-wrapper {
        margin-top: 8px;
    }

    .hero-form-card {
        padding: 28px 24px;
        max-width: none;
    }

    .hero-form-title {
        font-size: 1.125rem;
    }

    .hero {
        padding-top: calc(var(--header-height) + 36px);
        padding-bottom: 44px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 0.9375rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .hero-label {
        margin-bottom: 16px;
    }

    /* Hero phone CTA visible on mobile */
    .hero-phone-cta {
        display: inline-flex;
    }

    /* Hero inline stats */
    .hero-stats-inline {
        gap: 20px;
        margin-top: 28px;
        padding-top: 24px;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.6875rem;
    }

    .btn-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-group .btn {
        width: 100%;
    }

    .page-hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 40px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

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

    /* Trust logos - compact strip */
    .trust-strip {
        padding: 28px 0;
    }

    .trust-label {
        font-size: 0.6875rem;
        margin-bottom: 16px;
    }

    .trust-logos {
        gap: 16px;
    }

    .trust-logo {
        height: 28px;
    }

    .trust-logo img {
        max-height: 28px;
        max-width: 90px;
    }

    /* Benefits - horizontal card layout on mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-card {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-bottom: 0;
        border-radius: 10px;
    }

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

    .benefit-card h3 {
        font-size: 1.0625rem;
        margin-bottom: 4px;
    }

    .benefit-card p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    /* Steps - compact horizontal layout */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid::before {
        display: none;
    }

    .step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }

    .step-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1rem;
        margin: 0;
    }

    .step h3 {
        font-size: 1.0625rem;
        margin-bottom: 4px;
    }

    .step p {
        font-size: 0.8125rem;
        max-width: none;
        margin: 0;
        line-height: 1.5;
    }

    /* Stats - tighter */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat {
        padding: 16px 8px;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    /* Feature highlights - compact */
    .feature-highlight {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 0;
    }

    .feature-highlight:nth-child(even) .feature-highlight-visual {
        order: -1;
    }

    .feature-highlight-content h3 {
        font-size: 1.375rem;
    }

    .feature-highlight-visual {
        aspect-ratio: 16/10;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-quote p {
        font-size: 0.875rem;
        margin-bottom: 16px;
    }

    /* Urgency banner mobile */
    .urgency-banner {
        padding: 32px 0;
    }

    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .urgency-text h3 {
        font-size: 1.125rem;
    }

    .urgency-text p {
        font-size: 0.875rem;
    }

    .urgency-banner .btn {
        width: 100%;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card:last-child {
        max-width: none;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-height: 280px;
    }

    .about-text h2 {
        font-size: 1.625rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .value-card {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }

    .value-icon {
        margin: 0;
        min-width: 48px;
    }

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

    .reason-card {
        padding: 24px;
        gap: 16px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        gap: 20px;
    }

    .contact-info-card {
        padding: 24px;
    }

    .map-placeholder {
        height: 200px;
        border-radius: var(--radius-md);
    }

    /* Footer - add bottom padding for floating call button */
    .footer {
        padding: 48px 0 0;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .footer-desc {
        max-width: 400px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 0 140px;
    }

    .footer-bottom span {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Comparison table scroll */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .comparison-table {
        min-width: 600px;
    }

    /* CTA banner - compact */
    .cta-banner {
        padding: 44px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    /* Methods section - compact */
    .methods-section {
        padding: 48px 0;
    }

    .methods-tabs {
        max-width: 320px;
        margin-bottom: 28px;
    }

    .method-tab {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

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

    .method-text h3 {
        font-size: 1.375rem;
    }

    .method-text p {
        font-size: 0.9375rem;
        margin-bottom: 16px;
    }

    /* Express banner - compact */
    .express-banner {
        flex-direction: column;
        padding: 24px;
        text-align: center;
        gap: 16px;
        margin-top: 32px;
    }

    .express-badge {
        min-width: 72px;
        height: 72px;
    }

    .express-badge-number {
        font-size: 1.75rem;
    }

    .express-content h3 {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    .express-content p {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }

    .express-items {
        justify-content: center;
        gap: 12px;
    }

    .express-item {
        font-size: 0.75rem;
    }

    .express-cta {
        width: 100%;
    }

    .express-cta .btn {
        width: 100%;
    }

    /* FAQ improvements */
    .faq-question {
        padding: 20px 0;
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }

    /* Feature cards */
    .feature-card {
        padding: 28px 24px;
    }

    .feature-card h3 {
        font-size: 1.125rem;
    }

    /* Buttons */
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }

    /* Check list - tighter */
    .check-list li {
        font-size: 0.875rem;
        margin-bottom: 8px;
        padding-left: 28px;
    }

    .check-list li::before {
        width: 18px;
        height: 18px;
    }

    .check-list li::after {
        left: 6px;
        top: 6px;
        width: 4px;
        height: 8px;
    }
}

/* --- Mobile small (max 480px) --- */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    .section {
        padding: 36px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-label {
        font-size: 0.6875rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .container {
        padding: 0 16px;
    }

    /* Floating buttons - adjust for very small screens */
    .mobile-call-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 18px;
        font-size: 0.875rem;
    }

    .mobile-call-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Hero - maximally compact */
    .hero {
        padding-top: calc(var(--header-height) + 28px);
        padding-bottom: 36px;
    }

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

    .hero p {
        font-size: 0.875rem;
        margin-bottom: 24px;
    }

    .hero-label {
        font-size: 0.6875rem;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .hero-form-card {
        padding: 24px 20px;
    }

    .hero-form-title {
        font-size: 1rem;
    }

    .hero-form-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 16px;
    }

    .hero-form-input {
        padding: 12px 14px;
        font-size: 0.875rem;
    }

    .hero-form-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Hero stats - compact */
    .hero-stats-inline {
        gap: 16px;
        margin-top: 24px;
        padding-top: 20px;
    }

    .hero-stat-number {
        font-size: 1.125rem;
    }

    .hero-stat-label {
        font-size: 0.625rem;
    }

    /* Hero form proof */
    .hero-form-proof {
        gap: 6px;
    }

    .hero-form-proof-avatars span {
        width: 24px;
        height: 24px;
        font-size: 0.5625rem;
    }

    .hero-form-proof-text {
        font-size: 0.75rem;
    }

    /* Testimonials extra small */
    .testimonial-card {
        padding: 20px 16px;
    }

    .testimonial-quote p {
        font-size: 0.8125rem;
    }

    .testimonial-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .testimonial-author strong {
        font-size: 0.875rem;
    }

    /* Urgency extra small */
    .urgency-banner {
        padding: 24px 0;
    }

    .urgency-text h3 {
        font-size: 1rem;
    }

    .urgency-text p {
        font-size: 0.8125rem;
    }

    /* Page hero */
    .page-hero {
        padding-top: calc(var(--header-height) + 32px);
        padding-bottom: 32px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    /* Trust logos - minimal */
    .trust-strip {
        padding: 20px 0;
    }

    .trust-label {
        font-size: 0.625rem;
        margin-bottom: 12px;
    }

    .trust-logos {
        gap: 12px;
    }

    .trust-logo {
        height: 24px;
    }

    .trust-logo img {
        max-height: 24px;
        max-width: 80px;
    }

    /* Benefits - tighter horizontal cards */
    .benefits-grid {
        gap: 10px;
    }

    .benefit-card {
        padding: 16px;
        gap: 12px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 8px;
    }

    .benefit-icon svg {
        width: 16px;
        height: 16px;
    }

    .benefit-card h3 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.8125rem;
    }

    /* Steps - ultra compact */
    .steps-grid {
        gap: 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.9375rem;
    }

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

    .step p {
        font-size: 0.8125rem;
    }

    /* Stats */
    .stats-section {
        padding: 32px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .stat {
        padding: 14px 8px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Feature highlights */
    .feature-highlight {
        padding: 28px 0;
        gap: 20px;
    }

    .feature-highlight-content h3 {
        font-size: 1.25rem;
    }

    .feature-highlight-visual {
        aspect-ratio: 16/10;
        border-radius: var(--radius-lg);
    }

    /* CTA */
    .cta-banner {
        padding: 36px 0;
    }

    .cta-content h2 {
        font-size: 1.25rem;
    }

    .cta-content p {
        font-size: 0.875rem;
    }

    /* Methods */
    .methods-section {
        padding: 36px 0;
    }

    .methods-tabs {
        max-width: 260px;
        margin-bottom: 24px;
    }

    .method-tab {
        font-size: 0.8125rem;
        padding: 9px 12px;
    }

    .method-content {
        gap: 20px;
    }

    .method-text h3 {
        font-size: 1.25rem;
    }

    .method-text p {
        font-size: 0.875rem;
    }

    /* Express banner */
    .express-banner {
        padding: 20px 16px;
        gap: 14px;
        margin-top: 24px;
    }

    .express-badge {
        min-width: 64px;
        height: 64px;
    }

    .express-badge-number {
        font-size: 1.5rem;
    }

    .express-content h3 {
        font-size: 1.125rem;
    }

    .express-content p {
        font-size: 0.8125rem;
    }

    .express-item {
        font-size: 0.6875rem;
    }

    /* Pricing */
    .pricing-amount {
        font-size: 2.25rem;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-features li {
        font-size: 0.875rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-heading {
        margin-bottom: 14px;
    }

    .footer-links li {
        margin-bottom: 10px;
        font-size: 0.875rem;
    }

    .footer-bottom {
        padding: 20px 0 132px;
    }

    .footer-bottom span {
        font-size: 0.6875rem;
    }

    /* About */
    .about-visual {
        max-height: 240px;
        aspect-ratio: auto;
    }

    .about-text p {
        font-size: 0.9375rem;
    }

    /* Reason cards */
    .reason-card {
        padding: 20px;
        gap: 14px;
    }

    .reason-card h4 {
        font-size: 1rem;
    }

    .reason-card p {
        font-size: 0.875rem;
    }

    .reason-number {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }

    /* Values */
    .value-card {
        padding: 16px;
        gap: 14px;
    }

    .value-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.8125rem;
    }

    /* Contact */
    .contact-info-card {
        padding: 20px;
    }

    .contact-info-card h3 {
        font-size: 1rem;
    }

    .contact-info-item {
        font-size: 0.875rem;
    }

    .map-placeholder {
        height: 180px;
    }

    /* FAQ */
    .faq-question {
        padding: 16px 0;
        font-size: 0.9375rem;
        gap: 12px;
    }

    .faq-answer p {
        font-size: 0.8125rem;
    }

    /* Table wrapper */
    .table-wrapper {
        margin: 0 -16px;
        padding: 0 16px;
    }

    /* Mobile nav adjustments */
    .mobile-nav {
        padding: 12px 16px 32px;
    }

    .mobile-nav .nav-link {
        padding: 12px 14px;
        font-size: 1rem;
    }

    .mobile-nav .btn {
        padding: 12px 24px;
    }
}
