@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --navy:       #050f1f;
  --navy-mid:   #0a1e3d;
  --blue:       #1565f5;
  --blue-light: #3d8bff;
  --cyan:       #00b4ff;
  --white:      #ffffff;
  --muted:      #8ba3c7;
  --border:     rgba(255,255,255,0.08);
  --card-bg:    rgba(255,255,255,0.04);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--navy); color: var(--white); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; line-height: 1.2; font-weight: 600; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 72px; background: rgba(5,15,31,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: background var(--transition); }
.navbar.scrolled { background: rgba(5,15,31,0.97); }
.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.nav-logo img { height: 120px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--cyan); transform: scaleX(0); transition: transform var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown-arrow { font-size: 0.6rem; color: var(--muted); transition: transform var(--transition); display: inline-block; }
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%); background: rgba(5,15,31,0.97); border: 1px solid var(--border); border-radius: 12px; padding: 0.5rem; min-width: 220px; opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); transform: translateX(-50%) translateY(-6px); backdrop-filter: blur(16px); z-index: 999; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 0.6rem 0.85rem; border-radius: 8px; font-size: 0.85rem; color: var(--muted); transition: all var(--transition); white-space: nowrap; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-dropdown-menu a.active { color: var(--cyan); }
.nav-dropdown-menu .dropdown-icon { font-size: 1rem; width: 20px; text-align: center; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; z-index: 1001; }
.lang-switcher { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 8px; padding: 4px 6px; }
.lang-switcher a { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); padding: 3px 7px; border-radius: 5px; transition: all var(--transition); }
.lang-switcher a.active, .lang-switcher a:hover { background: var(--blue); color: var(--white); }
.lang-switcher .sep { color: rgba(255,255,255,0.15); font-size: 0.7rem; }
.nav-cta { background: var(--blue); color: var(--white) !important; padding: 8px 20px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; transition: all var(--transition); }
.nav-cta:hover { background: var(--blue-light); transform: translateY(-1px); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(5,15,31,0.98); backdrop-filter: blur(20px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--white); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--cyan); }
.mobile-lang { display: flex; gap: 1rem; margin-top: 1rem; padding-top: 2rem; border-top: 1px solid var(--border); width: 80%; justify-content: center; }
.mobile-lang a { font-size: 1rem !important; color: var(--muted) !important; }
.mobile-lang a.active { color: var(--cyan) !important; }
.mobile-cta { background: var(--blue); color: var(--white) !important; padding: 14px 40px; border-radius: 10px; font-size: 1rem !important; }

/* HERO */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background-image: url('../assets/images/hero-bg.png'); background-size: cover; background-position: center; filter: brightness(0.25) saturate(1.4); z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(5,15,31,0.85) 0%, rgba(5,15,31,0.4) 50%, rgba(0,90,180,0.15) 100%); z-index: 1; }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0,180,255,0.12) 0%, transparent 70%); top: 50%; left: 55%; transform: translate(-50%,-50%); z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 0 5%; max-width: 760px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,180,255,0.1); border: 1px solid rgba(0,180,255,0.25); border-radius: 100px; padding: 6px 16px; font-size: 0.8rem; font-weight: 500; color: var(--cyan); letter-spacing: 0.06em; margin-bottom: 2rem; animation: fadeInUp 0.6s ease both; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; animation: fadeInUp 0.6s 0.1s ease both; }
.hero h1 .accent { background: linear-gradient(90deg, var(--blue-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: clamp(0.95rem,2vw,1.1rem); color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.8; animation: fadeInUp 0.6s 0.2s ease both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.6s 0.3s ease both; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 0.75rem; letter-spacing: 0.1em; animation: fadeIn 1s 0.8s ease both; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cyan), transparent); animation: scrollDrop 1.5s ease-in-out infinite; }
@keyframes scrollDrop { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: white; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; font-family: 'Outfit', sans-serif; transition: all var(--transition); white-space: nowrap; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(21,101,245,0.4); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; font-family: 'Outfit', sans-serif; transition: all var(--transition); border: 1px solid rgba(255,255,255,0.2); white-space: nowrap; }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn-arrow { display: inline-block; transition: transform var(--transition); }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* SECTIONS */
.section { padding: 6rem 5%; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; color: var(--cyan); text-transform: uppercase; margin-bottom: 1rem; }
.section-label::before { content: ''; width: 24px; height: 1.5px; background: var(--cyan); }
.section-title { font-size: clamp(1.7rem,3vw,2.6rem); font-weight: 700; margin-bottom: 1.25rem; line-height: 1.15; }
.section-title .accent { background: linear-gradient(90deg, var(--blue-light), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.8; }

/* ABOUT SECTION */
.about-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-image-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.about-image-wrap img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; filter: brightness(0.85) saturate(1.2); }
.about-image-wrap::after { content: ''; position: absolute; inset: 0; border-radius: 20px; border: 1px solid rgba(0,180,255,0.2); pointer-events: none; }
.about-corner { position: absolute; bottom: -1px; right: -1px; width: 120px; height: 120px; background: linear-gradient(135deg, transparent 50%, rgba(21,101,245,0.4) 100%); border-radius: 0 0 20px 0; }
.about-text .section-sub { max-width: 100%; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin-top: 2.5rem; }
.stat-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem 1rem; text-align: center; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--cyan); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; }

/* SERVICES GRID */
.services-section { max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.service-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: all var(--transition); position: relative; overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover { border-color: rgba(0,180,255,0.2); background: rgba(255,255,255,0.07); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,100,255,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(21,101,245,0.15); border: 1px solid rgba(21,101,245,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; transition: all var(--transition); }
.service-card:hover .service-icon { background: rgba(21,101,245,0.25); border-color: var(--cyan); }
.service-name { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--white); }
.service-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.service-link { position: absolute; bottom: 1.5rem; right: 1.5rem; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--muted); transition: all var(--transition); }
.service-card:hover .service-link { background: var(--blue); border-color: var(--blue); color: white; }

/* WHY US */
.why-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3.5rem; }
.why-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; transition: all var(--transition); }
.why-card:hover { border-color: rgba(0,180,255,0.2); transform: translateY(-3px); }
.why-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
.why-icon { font-size: 1.4rem; }
.why-title { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; }
.why-text { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* CTA */
.cta-section { position: relative; overflow: hidden; text-align: center; }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-bg-glow { position: absolute; width: 500px; height: 300px; border-radius: 50%; background: radial-gradient(ellipse, rgba(21,101,245,0.18) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-section h2 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 700; margin-bottom: 1.25rem; }
.cta-section p { font-size: 1.05rem; color: var(--muted); margin-bottom: 2.5rem; line-height: 1.8; }

/* PAGE HERO (inner pages) */
.page-hero { min-height: 40vh; position: relative; display: flex; align-items: flex-end; padding-top: 72px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-image: url('../../assets/images/hero-bg.png'); background-size: cover; background-position: center; filter: brightness(0.2) saturate(1.4); z-index: 0; }
.page-hero-bg-1up { position: absolute; inset: 0; background-image: url('../assets/images/hero-bg.png'); background-size: cover; background-position: center; filter: brightness(0.2) saturate(1.4); z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,15,31,1) 0%, rgba(5,15,31,0.5) 60%, transparent 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; padding: 3rem 5%; max-width: 900px; }
.page-breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
.page-breadcrumb a { color: var(--cyan); }
.page-hero-content h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 700; margin-bottom: 1rem; }
.page-hero-content .lead { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.8; }

/* SERVICE DETAIL */
.service-detail { max-width: 1100px; margin: 0 auto; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }
.service-body h2 { font-size: 1.4rem; font-weight: 600; margin: 2.5rem 0 1rem; color: var(--white); }
.service-body h2:first-child { margin-top: 0; }
.service-body p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.service-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.service-body ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.service-body ul li::before { content: '→'; color: var(--cyan); flex-shrink: 0; margin-top: 1px; }
.pricing-card { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; position: sticky; top: 100px; }
.pricing-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; }
.price-display { text-align: center; padding: 1.5rem; background: rgba(21,101,245,0.08); border: 1px solid rgba(21,101,245,0.2); border-radius: 14px; margin-bottom: 1.5rem; }
.price-from { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.price-amount { font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--cyan); line-height: 1; }
.price-unit { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }
.pricing-notes { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-notes li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.pricing-notes li::before { content: '✓'; color: var(--cyan); flex-shrink: 0; font-weight: 600; }
.pricing-card .btn-primary { width: 100%; justify-content: center; }

/* ABOUT PAGE */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
.value-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; transition: all var(--transition); }
.value-card:hover { border-color: rgba(0,180,255,0.2); transform: translateY(-3px); }
.value-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
.value-icon { font-size: 1.4rem; }
.value-title { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 600; }
.value-text { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.sectors-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sectors-inner { max-width: 1100px; margin: 0 auto; }
.sectors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.sector-pill { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; text-align: center; font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: all var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; }
.sector-pill:hover { border-color: rgba(0,180,255,0.3); color: var(--cyan); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-info .section-sub { max-width: 100%; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 1.25rem; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(21,101,245,0.15); border: 1px solid rgba(21,101,245,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-text { font-size: 0.9rem; color: var(--muted); }
.contact-detail-value { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.contact-detail-value a { color: var(--cyan); }
.contact-form { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: border-color var(--transition); outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(139,163,199,0.5); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238ba3c7' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 1rem; }

/* FOOTER */
footer { background: var(--navy-mid); border-top: 1px solid var(--border); padding: 3rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; align-items: start; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-top: 0.75rem; max-width: 260px; }
.footer-logo img { height: 140px; width: auto; object-fit: contain; margin-top: -30px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--cyan); }
.footer-email { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--cyan); margin-top: 0.5rem; transition: opacity var(--transition); }
.footer-email:hover { opacity: 0.8; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; font-size: 0.8rem; color: var(--muted); }
.footer-lang { display: flex; gap: 1rem; }
.footer-lang a { color: var(--muted); font-size: 0.8rem; font-weight: 500; transition: color var(--transition); }
.footer-lang a:hover, .footer-lang a.active { color: var(--cyan); }

/* ANIMATIONS */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* TABLET */
@media (max-width: 1024px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .pricing-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 6%; }
  .hero h1 { font-size: clamp(1.9rem,7vw,2.6rem); margin-bottom: 1.2rem; }
  .hero p { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 15px 24px; }
  .hero-scroll { display: none; }
  .section { padding: 4rem 6%; }
  .about-image-wrap img { height: 260px; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .page-hero-content h1 { font-size: clamp(1.7rem,6vw,2.4rem); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2,1fr); }
  .cta-section .btn-primary { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .lang-switcher a { padding: 3px 5px; font-size: 0.7rem; }
}
