/* ============================================
   AMK Systems — Sky Blue Theme
   Base: #EEF5FC  Primary: #7AB5D9  Accent: #4A90C4
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --forest-deep: #EEF5FC;
    --forest-mid: #EEF5FC;
    --forest-accent: #4A90C4;
    --forest-light: #EEF5FC;
    --cream: #FFFFFF;
    --cream-warm: #FFFFFF;
    --sage: #EEF5FC;
    --sage-dark: #D0E6F5;
    --text-dark: #0D1A27;
    --text-mid: #1E3A5F;
    --text-light: #3A6B99;
    --white: #FFFFFF;
    --red-debit: #E74C3C;
    --green-credit: #2C7A2C;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--cream-warm);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ---- Noise Overlay ---- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.navbar-logo img {
    height: 46px;
    width: auto;
    border-radius: 8px;
}

.navbar-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-light);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-mid);
}

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

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--forest-deep);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

/* Geometric decorative elements */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float-slow 20s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 100px;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease both;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--forest-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero h1 .accent {
    color: var(--text-mid);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 60px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s ease;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: var(--text-mid);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 200, 0, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.25);
    border-radius: 60px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-secondary:hover {
    border-color: rgba(0,0,0,0.4);
    background: rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(0,0,0,0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    width: 3px;
    height: 8px;
    background: rgba(0,0,0,0.4);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ============ SECTION COMMONS ============ */
.section {
    padding: 120px 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--forest-accent);
    margin-bottom: 1.2rem;
}

.section-label .line {
    width: 30px;
    height: 2px;
    background: var(--forest-accent);
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 580px;
    line-height: 1.8;
}

.section-subtitle.light {
    color: var(--text-mid);
}

/* ============ ABOUT ============ */
.about {
    background: var(--cream-warm);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.about-visual {
    position: relative;
}

.about-visual-card {
    background: var(--forest-deep);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: none;
}

.about-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Arial Black', sans-serif;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(26, 18, 0, 0.04);
    letter-spacing: 8px;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

.about-emblem {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0 0.5rem;
}

.about-emblem-wheel svg {
    animation: spin 18s linear infinite;
    opacity: 0.85;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.about-emblem-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.about-emblem-amk {
    font-family: 'Arial Black', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 3px;
}

.about-emblem-systems {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    border: 1px solid rgba(26,18,0,0.08);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: var(--sage);
    border-radius: 14px;
    border: 1px solid var(--sage-dark);
    color: var(--text-dark);
}

.value-icon {
    width: 38px;
    height: 38px;
    background: var(--forest-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.1rem;
}

.value-item h4 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.value-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============ PRODUCTS ============ */
.products {
    background: var(--forest-deep);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

.products .section-inner {
    position: relative;
    z-index: 2;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3.5rem;
}

.product-phone-wrapper {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
}

.phone-frame {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.phone-screen {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    display: block;
}

.phone-screen--blank {
    background: #f5f5f5;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-question {
    font-size: 6rem;
    font-weight: 300;
    color: #cccccc;
    line-height: 1;
}

/* Floating feature pills */
.product-feature-float {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    z-index: 6;
}

.float-income {
    top: 25%;
    right: -50px;
    animation: float-badge 3s ease-in-out infinite;
}

.float-expense {
    bottom: 30%;
    left: -50px;
    animation: float-badge 3s ease-in-out 1.5s infinite;
}

.float-income .pill-dot { color: var(--green-credit); }
.float-expense .pill-dot { color: var(--red-debit); }

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.product-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-details p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-mid);
    font-size: 0.98rem;
    line-height: 1.6;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: rgba(74,144,196,0.2);
    border: 1px solid rgba(74,144,196,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--forest-light);
    font-size: 0.85rem;
}

.product-platforms {
    display: flex;
    gap: 12px;
    margin-top: 2.5rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 60px;
    color: var(--text-mid);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-badge:hover {
    background: rgba(0,0,0,0.15);
    color: var(--text-dark);
}

.product-showcase--centered {
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
}

.product-showcase--centered h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-showcase--centered p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.launching-soon-badge {
    display: inline-block;
    padding: 12px 36px;
    background: var(--text-dark);
    color: var(--white);
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============ SERVICES ============ */
.services {
    background: var(--cream-warm);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: #EEF5FC;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--sage-dark);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--forest-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(74,144,196,0.15);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--sage);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--forest-accent);
    color: var(--white);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tag {
    padding: 5px 12px;
    background: var(--sage-dark);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

/* ============ CONTACT ============ */
.contact {
    background: var(--forest-deep);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

.contact .section-inner {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    color: var(--text-mid);
    font-size: 0.98rem;
    line-height: 1.75;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-text {
    color: var(--text-mid);
    font-size: 0.95rem;
}

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

.contact-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--forest-accent);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(74,144,196,0.2);
}

.form-group select option {
    background: var(--forest-deep);
    color: var(--white);
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--forest-accent);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74,144,196,0.3);
}

/* ============ FOOTER ============ */
.footer {
    background: #EEF5FC;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 36px;
    border-radius: 6px;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.footer-copy {
    color: var(--text-mid);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .about-grid,
    .product-showcase,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section { padding: 80px 1.5rem; }

    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

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

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

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

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

    .product-feature-float {
        display: none;
    }

    .phone-mockup {
        width: 240px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
