/* ===== CSS Variables ===== */
:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #3399ff;
    --secondary: #1a1a2e;
    --accent: #00d4aa;
    --text: #333;
    --text-light: #666;
    --text-muted: #888;
    --bg: #fff;
    --bg-alt: #f8f9fb;
    --bg-dark: #1a1a2e;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--secondary);
}

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

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo:hover {
    color: var(--secondary);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.75rem;
}

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

.nav-links a.btn-primary {
    color: #fff !important;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
    color: var(--primary);
}

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

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: all var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    max-width: 800px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 24px;
}

.hero .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Page Header ===== */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.alt-bg {
    background: var(--bg-alt);
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

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

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 32px;
}

.product-content h3 {
    margin-bottom: 12px;
}

.product-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-features {
    margin-bottom: 24px;
}

.product-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ===== Comparison Table ===== */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
}

.comparison-table th.highlight-col {
    background: var(--primary);
}

.comparison-table td.highlight-col {
    background: rgba(0, 102, 204, 0.05);
    font-weight: 500;
}

.comparison-table .check {
    color: var(--accent);
    font-weight: bold;
    margin-right: 8px;
}

/* ===== Industries Grid ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.industry-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.industry-card:hover {
    transform: translateY(-4px);
}

.industry-card h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

.industry-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Product Detail ===== */
.product-nav-section {
    padding: 40px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.product-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-nav-item {
    padding: 12px 24px;
    background: #fff;
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.product-nav-item:hover {
    background: var(--primary);
    color: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.product-detail-grid.reverse {
    grid-template-columns: 400px 1fr;
}

.product-detail-grid.reverse .product-detail-content {
    order: 2;
}

.product-category {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.product-tagline {
    font-size: 1.25rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 24px;
}

.product-specs {
    margin: 40px 0;
}

.product-specs h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.spec-item {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius);
}

.spec-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 4px;
}

.spec-item span {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.spec-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.product-features-list {
    margin: 40px 0;
}

.product-features-list h4 {
    margin-bottom: 16px;
}

.product-features-list ul {
    list-style: none;
}

.product-features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.product-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.product-detail-image {
    position: sticky;
    top: 100px;
}

.product-image-placeholder {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.placeholder-icon {
    display: block;
    font-size: 4rem;
    margin-bottom: 16px;
}

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

.about-content h2 {
    margin-bottom: 24px;
}

.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.difference-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.difference-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.difference-card h3 {
    margin-bottom: 16px;
}

.difference-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

.value-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.team-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.team-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    color: #fff;
}

.stat-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.stat-card .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.contact-form-wrapper h2 {
    margin-bottom: 16px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

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

.contact-info-card {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-method {
    margin-bottom: 20px;
}

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

.contact-method h4 {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-method p {
    margin-bottom: 0;
}

.contact-method a {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-info-card address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-benefits {
    list-style: none;
}

.contact-benefits li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.contact-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.map-section {
    padding: 0;
}

.map-placeholder {
    height: 300px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* ===== Solutions Page ===== */
.solutions-intro {
    padding: 60px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.solution-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.solution-content h4 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary);
}

.solution-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.solution-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.solution-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.solution-products h4 {
    margin-bottom: 20px;
}

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

.product-link-card {
    display: block;
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.alt-bg .product-link-card {
    background: #fff;
}

.product-link-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.product-link-name {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.product-link-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.custom-solutions {
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
    text-align: center;
}

.custom-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.custom-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .product-detail-grid,
    .product-detail-grid.reverse {
        grid-template-columns: 1fr;
    }

    .product-detail-grid.reverse .product-detail-content {
        order: 0;
    }

    .product-detail-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .hero-stats {
        gap: 32px;
    }

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

    .about-image {
        order: -1;
    }

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

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

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

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

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