/* ============================================
   Flors Giovanna — Styles
   Teal + Slate Grey · Vibrant Modern
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --teal-50: #F0FDFA;
    --teal-100: #CCFBF1;
    --teal-200: #99F6E4;
    --teal-300: #5EEAD4;
    --teal-400: #2DD4BF;
    --teal-500: #14B8A6;
    --teal-600: #0D9488;
    --teal-700: #0F766E;
    --teal-800: #115E59;
    --teal-900: #134E4A;

    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --slate-950: #080E1A;

    --accent-orange: #F97316;
    --accent-pink: #EC4899;
    --accent-yellow: #FBBF24;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.15);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background: var(--slate-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* --- Typography --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-md);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--teal-500);
    border-radius: 2px;
}

.section-label--dark {
    color: var(--slate-700);
}

.section-label--dark::before {
    background: var(--teal-600);
}

.section-label--light {
    color: var(--teal-200);
}

.section-label--light::before {
    background: var(--teal-400);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: var(--space-lg);
}

.section-title--light {
    color: var(--slate-50);
}

.section-title--dark {
    color: var(--slate-900);
}

.section-header--centered {
    text-align: center;
}

.section-header--centered .section-label {
    justify-content: center;
}

.section-header--centered .section-label::before {
    display: none;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.text-accent {
    color: var(--teal-600);
}

.text-accent-dark {
    color: var(--teal-700);
}

.text-white {
    color: white;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-600);
    color: white;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}

.btn--primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn--white {
    background: white;
    color: var(--teal-700);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    padding: var(--space-sm) 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--slate-900);
    z-index: 1001;
}

.nav-logo .logo-icon {
    color: var(--teal-600);
}

.navbar:not(.scrolled) .nav-logo {
    color: white;
}

.navbar:not(.scrolled) .logo-icon {
    color: var(--teal-300);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    color: var(--teal-600);
    background: var(--teal-50);
}

.nav-link--cta {
    background: var(--teal-600);
    color: white !important;
    margin-left: var(--space-sm);
}

.nav-link--cta:hover {
    background: var(--teal-700);
    color: white !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar:not(.scrolled) .nav-toggle span {
    background: white;
}

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

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

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--slate-900);
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: 10%;
}

.geo-circle--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
    top: 30%;
    left: 5%;
}

.geo-rect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13, 148, 136, 0.08);
    border: 2px solid rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-lg);
    top: 15%;
    right: 5%;
    transform: rotate(15deg);
}

.geo-diamond {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.25);
    border-radius: var(--radius-sm);
    bottom: 20%;
    right: 35%;
    transform: rotate(45deg);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--teal-300);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-400);
    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-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: white;
    margin-bottom: var(--space-xl);
}

.title-accent {
    color: var(--teal-400);
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--slate-400);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-700);
}

/* Hero Image Stack */
.hero-visual {
    position: relative;
    height: 680px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-card--main {
    width: 320px;
    height: 420px;
    top: 0;
    right: 0;
    z-index: 3;
}

.img-card--secondary {
    width: 260px;
    height: 200px;
    bottom: 120px;
    left: 0;
    z-index: 2;
    border: 4px solid var(--slate-900);
}

.img-card--accent {
    width: 200px;
    height: 200px;
    bottom: 0;
    right: 40px;
    z-index: 4;
    background: var(--teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.img-card--accent img {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0.4;
}

.accent-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.accent-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.accent-text {
    font-size: 0.8125rem;
    opacity: 0.85;
    line-height: 1.4;
}

.img-card__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    color: var(--slate-800);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.img-card__badge svg {
    color: var(--accent-yellow);
}

.img-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: inherit;
}

.product-card__img:hover .img-card__overlay {
    opacity: 1;
}

.img-card__overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
}

/* --- Marquee --- */
.marquee-strip {
    background: var(--teal-600);
    overflow: hidden;
    padding: var(--space-md) 0;
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: var(--space-3xl);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- About Section --- */
.about {
    position: relative;
    padding: var(--space-4xl) 0;
    background: white;
    overflow: hidden;
}

.about-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-square {
    position: absolute;
    border-radius: var(--radius-md);
}

.geo-square--1 {
    width: 200px;
    height: 200px;
    background: var(--teal-50);
    border: 2px solid var(--teal-100);
    top: 10%;
    right: -40px;
    transform: rotate(20deg);
}

.geo-circle--about {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -80px;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-text {
    max-width: 540px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
    border-radius: 3px;
    margin-bottom: var(--space-xl);
}

.about-body {
    font-size: 1.0625rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-body strong {
    color: var(--slate-800);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--teal-50);
    border: 1.5px solid var(--teal-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
}

.feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--slate-800);
    margin-bottom: 2px;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.about-visual {
    position: relative;
}

.about-image-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img--1 {
    height: 340px;
}

.about-img--2 {
    height: 180px;
}

.about-img--3 {
    height: 180px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img:hover img {
    transform: scale(1.03);
}

/* --- Products Section --- */
.products {
    padding: var(--space-4xl) 0;
    background: var(--slate-50);
    position: relative;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-lg);
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.product-card--large {
    grid-column: span 7;
}

.product-card:not(.product-card--large) {
    grid-column: span 5;
}

.product-card__img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-card--large .product-card__img {
    height: 360px;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__img img {
    transform: scale(1.05);
}

.product-card__content {
    padding: var(--space-lg);
}

.product-card__content h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-sm);
}

.product-card__content p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.65;
}

/* --- Services Section --- */
.services {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--teal-700);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-stripe {
    position: absolute;
    width: 60px;
    height: 100%;
}

.geo-stripe--1 {
    background: rgba(255, 255, 255, 0.03);
    left: 20%;
}

.geo-stripe--2 {
    background: rgba(255, 255, 255, 0.03);
    left: 60%;
}

.geo-circle--services {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-400), var(--teal-200));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-300);
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--slate-900);
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-circle--cta1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.geo-circle--cta2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
}

.geo-rect--cta {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.12);
    border-radius: var(--radius-lg);
    top: 20%;
    right: 5%;
    transform: rotate(-10deg);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--slate-400);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-4xl) 0;
    background: white;
    position: relative;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-info {
    max-width: 520px;
}

.contact-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
    border-radius: 3px;
    margin-bottom: var(--space-xl);
}

.contact-body {
    font-size: 1.0625rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--teal-50);
    border: 1.5px solid var(--teal-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-600);
}

.contact-item__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.contact-item__value {
    display: block;
    font-size: 1rem;
    color: var(--slate-800);
    font-weight: 500;
}

.contact-link {
    color: var(--teal-600);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--teal-700);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Form */
.contact-form-wrapper {
    width: 100%;
}

.form-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--slate-500);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: var(--space-sm);
}

.optional {
    font-weight: 400;
    color: var(--slate-400);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: white;
    color: var(--slate-800);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.form-success.active {
    display: block;
}

.success-icon {
    margin-bottom: var(--space-lg);
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--slate-900);
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--slate-500);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: var(--slate-950);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--slate-800);
}

.footer-brand p {
    color: var(--slate-500);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.footer-logo .logo-icon {
    color: var(--teal-400);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a {
    font-size: 0.9375rem;
    color: var(--slate-400);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--teal-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact p {
    font-size: 0.875rem;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-contact a {
    color: var(--slate-400);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--teal-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .hero-visual {
        height: 480px;
        max-width: 500px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-visual {
        order: -1;
    }

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

    .product-card--large {
        grid-column: span 2;
    }

    .product-card:not(.product-card--large) {
        grid-column: span 1;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem var(--space-xl) var(--space-xl);
        gap: var(--space-sm);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-md);
        font-size: 1.0625rem;
        color: var(--slate-700);
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: var(--space-md);
        text-align: center;
        justify-content: center;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .hero-container {
        padding: 0 var(--space-lg);
    }

    .hero-visual {
        height: 380px;
    }

    .img-card--main {
        width: 220px;
        height: 300px;
    }

    .img-card--secondary {
        width: 180px;
        height: 140px;
    }

    .img-card--accent {
        width: 150px;
        height: 150px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

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

    .product-card--large {
        grid-column: span 1;
    }

    .product-card:not(.product-card--large) {
        grid-column: span 1;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
