*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #3976bc; --blue-dark: #2a5a96; --blue-deep: #1a3a6e;
  --navy: #27265d; --navy-dark: #1a1a40;
  --green: #6cc77a; --green-dark: #4aaa5a;
  --white: #ffffff; --off-white: #f5f7fb; --light-gray: #e8ecf4;
  --gray: #8898aa; --text: #3d4b5e; --dark: #1c2237;
  --font-head: 'Montserrat', sans-serif; --font-body: 'Open Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* TOPBAR */
.topbar { background: var(--navy-dark); padding: 8px 0; font-size: 12px; color: rgba(255,255,255,0.75); }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
.topbar-contact { display: flex; gap: 24px; align-items: center; }
.topbar-contact a { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; transition: color 0.2s; font-family: var(--font-head); font-size: 11px; letter-spacing: 0.03em; }
.topbar-contact a:hover { color: var(--green); }
.topbar-social { display: flex; gap: 12px; align-items: center; }
.topbar-social a { color: rgba(255,255,255,0.5); transition: color 0.2s; display: flex; align-items: center; }
.topbar-social a svg { width: 15px; height: 15px; fill: currentColor; }
.topbar-social a:hover { color: var(--green); }
.lang-switcher { display: flex; align-items: center; gap: 4px; margin-left: 16px; border-left: 1px solid rgba(255,255,255,0.15); padding-left: 16px; }
.lang-btn { background: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; padding: 3px 8px; border-radius: 3px; cursor: pointer; transition: all 0.2s; }
.lang-btn.active { background: var(--green); border-color: var(--green); color: var(--dark); }
.lang-btn:hover:not(.active) { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* NAV */
nav { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text-wrap .logo-main { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--navy); letter-spacing: 0.02em; line-height: 1.1; }
.nav-logo-text-wrap .logo-main span { color: var(--green); }
.nav-logo-text-wrap .logo-sub { font-family: var(--font-head); font-size: 9px; letter-spacing: 0.25em; color: var(--gray); text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); padding: 20px 32px; gap: 8px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); z-index: 999; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 10px 14px; font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); transition: color 0.2s; cursor: pointer; }
.nav-link:hover { color: var(--blue); }
.nav-link .chevron { width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s; }
.nav-item:hover .nav-link .chevron { transform: rotate(-135deg) translateY(-2px); }
.dropdown { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 220px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); border-top: 3px solid var(--blue); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease; z-index: 100; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item a { display: block; padding: 11px 20px; font-family: var(--font-head); font-size: 12px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--light-gray); transition: all 0.2s; letter-spacing: 0.02em; }
.dropdown-item:last-child a { border-bottom: none; }
.dropdown-item a:hover { color: var(--blue); background: var(--off-white); padding-left: 26px; }
.mega-dropdown { position: absolute; top: 100%; left: -200px; background: var(--white); width: 900px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); border-top: 3px solid var(--blue); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease; z-index: 100; padding: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px; }
.nav-item:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col-title { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--light-gray); grid-column: span 1; }
.mega-item a { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-family: var(--font-head); font-size: 12px; font-weight: 500; color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.04); transition: color 0.2s; }
.mega-item a:hover { color: var(--blue); }
.mega-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.nav-cta-btn { background: var(--blue); color: var(--white) !important; padding: 10px 22px !important; border-radius: 4px; transition: background 0.2s !important; }
.nav-cta-btn:hover { background: var(--blue-dark) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); }

/* HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: var(--navy-dark); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0d1230 0%, #1a3a6e 40%, #2a5a96 70%, #1a2a50 100%); z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 70% 40%, rgba(57,118,188,0.35) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(108,199,122,0.12) 0%, transparent 40%); }
.hero-grid-overlay { display: none; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(108,199,122,0.15); border: 1px solid rgba(108,199,122,0.4); color: var(--green); font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; margin-bottom: 28px; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 2s ease infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(36px, 4.5vw, 62px); line-height: 1.1; color: var(--white); margin-bottom: 16px; letter-spacing: -0.01em; }
.hero-title .line-accent { color: var(--green); }
.hero-subtitle { font-family: var(--font-head); font-size: clamp(14px, 1.5vw, 18px); font-weight: 400; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.6; }
.hero-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 44px; font-style: italic; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 32px; border-radius: 4px; transition: all 0.25s; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(57,118,188,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn-green { background: var(--green); color: var(--dark); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 24px; }
.hero-card-title { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.hero-service-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hero-service-group { display: grid; gap: 10px; }
.hero-service-group-title { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); }
.hero-service-item { font-size: 14px; color: var(--white); opacity: 0.86; line-height: 1.8; }
.hero-service-item.hero-service-extra { display: none; }
.hero-service-group.expanded .hero-service-item.hero-service-extra { display: block; }
.hero-service-toggle { font-size: 13px; color: var(--green); font-weight: 700; cursor: pointer; margin-top: 4px; }
.hero-service-toggle:hover { opacity: 0.9; }
.hero-service-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.8); font-family: var(--font-head); }
.hero-service-item::before { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
.hero-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; }
.hero-stat { background: rgba(255,255,255,0.06); padding: 20px 16px; text-align: center; }
.hero-stat-num { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--green); }
.hero-stat-label { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; font-family: var(--font-head); }

/* TRUST BAND */
.trust-band { background: var(--blue); padding: 20px 0; }
.trust-band-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.trust-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; }
.trust-label { font-family: var(--font-head); font-weight: 700; font-size: 13px; }
.trust-sublabel { font-size: 11px; opacity: 0.75; }

/* SECTIONS */
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; width: 32px; height: 1px; background: var(--blue); opacity: 0.4; }
.section-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 3.5vw, 44px); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--blue); }
.section-subtitle { font-size: 15px; color: var(--gray); max-width: 580px; margin: 0 auto; line-height: 1.8; }

.solution-tabs { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.solution-tab { background: transparent; border: 1px solid var(--light-gray); color: var(--navy); font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 24px; border-radius: 999px; cursor: pointer; transition: all 0.25s; }
.solution-tab:hover { border-color: var(--blue); color: var(--blue); }
.solution-tab.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.solution-group { display: none; }
.solution-group.active { display: block; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: 8px; padding: 36px 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.service-card:hover { box-shadow: 0 16px 48px rgba(57,118,188,0.12); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(57,118,188,0.1), rgba(57,118,188,0.05)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.3s; }
.service-card:hover .service-icon-wrap { background: linear-gradient(135deg, rgba(57,118,188,0.2), rgba(57,118,188,0.1)); }
.service-icon-wrap svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.service-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 13px; line-height: 1.8; color: var(--gray); }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-top: 16px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-main-img { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--blue-deep) 0%, var(--navy) 100%); border-radius: 8px; overflow: hidden; position: relative; }
.about-main-img-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.about-img-icon svg { width: 80px; height: 80px; stroke: rgba(255,255,255,0.2); fill: none; stroke-width: 1; }
.about-img-text { font-family: var(--font-head); font-size: 13px; color: rgba(255,255,255,0.3); letter-spacing: 0.2em; text-transform: uppercase; }
.about-main-img .node { position: absolute; width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 12px var(--green); animation: nodeFloat 3s ease infinite alternate; }
.about-main-img .node:nth-child(1) { top: 25%; left: 30%; animation-delay: 0s; }
.about-main-img .node:nth-child(2) { top: 60%; left: 60%; animation-delay: 0.8s; }
.about-main-img .node:nth-child(3) { top: 40%; left: 75%; animation-delay: 1.6s; }
.about-main-img .node:nth-child(4) { top: 70%; left: 20%; animation-delay: 0.4s; }
@keyframes nodeFloat { from { transform: translateY(0); opacity: 0.7; } to { transform: translateY(-8px); opacity: 1; } }
.about-badge-card { position: absolute; bottom: -20px; right: -20px; background: var(--white); border-radius: 8px; padding: 20px 24px; box-shadow: 0 16px 40px rgba(0,0,0,0.12); text-align: center; }
.about-badge-num { font-family: var(--font-head); font-weight: 800; font-size: 40px; color: var(--blue); line-height: 1; }
.about-badge-label { font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }
.about-content .section-eyebrow { justify-content: flex-start; }
.about-content .section-eyebrow::before { display: none; }
.about-content .section-title { text-align: left; }
.about-desc { font-size: 14px; line-height: 1.9; color: var(--text); margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature-icon svg { width: 15px; height: 15px; stroke: white; fill: none; stroke-width: 2; }
.about-feature-text { font-size: 13px; line-height: 1.7; color: var(--text); }
.about-feature-text strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 2px; }

/* STATS */
.stats-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue-deep) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(57,118,188,0.3) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(108,199,122,0.15) 0%, transparent 50%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-card { text-align: center; padding: 40px 32px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-card:last-child { border-right: none; }
.stat-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.stat-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 1.5; }
.stat-number { font-family: var(--font-head); font-weight: 900; font-size: 52px; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--green); }
.stat-label { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* MARKETS */
.markets-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.market-card { background: var(--white); border: 1px solid var(--light-gray); border-radius: 8px; padding: 28px 20px; text-align: center; transition: all 0.3s; cursor: default; }
.market-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(57,118,188,0.1); transform: translateY(-3px); }
.market-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(57,118,188,0.1), rgba(57,118,188,0.05)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.market-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.market-name { font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--navy); letter-spacing: 0.04em; }

/* PROJECTS */
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.project-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--blue-deep), var(--navy)); cursor: pointer; }
.project-card:first-child { grid-row: span 2; aspect-ratio: auto; }
.project-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 70%, rgba(57,118,188,0.4) 0%, transparent 50%); }
.project-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(10,15,40,0.9)); padding: 48px 28px 28px; transform: translateY(60px); transition: transform 0.35s ease; }
.project-card:hover .project-overlay { transform: translateY(0); }
.project-category { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.project-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 8px; }
.project-desc { font-size: 12px; color: rgba(255,255,255,0.6); opacity: 0; transition: opacity 0.3s 0.1s; }
.project-card:hover .project-desc { opacity: 1; }
.project-icon-wrap { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(57,118,188,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(57,118,188,0.4); transition: all 0.3s; }
.project-card:hover .project-icon-wrap { background: rgba(57,118,188,0.4); transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
.project-icon-wrap svg { width: 36px; height: 36px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--green), var(--blue)); z-index: 0; }
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 3px solid var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; transition: all 0.3s; }
.process-step:hover .step-circle { background: var(--blue); }
.step-circle svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.process-step:hover .step-circle svg { stroke: var(--white); }
.step-num { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; background: var(--green); border-radius: 50%; font-family: var(--font-head); font-size: 10px; font-weight: 800; color: var(--dark); display: flex; align-items: center; justify-content: center; }
.step-title { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 12px; color: var(--gray); line-height: 1.7; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(108,199,122,0.12) 0%, transparent 50%); }
.cta-content { position: relative; }
.cta-tag { display: inline-block; background: rgba(255,255,255,0.15); color: var(--white); font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 16px; border-radius: 2px; margin-bottom: 24px; }
.cta-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 4vw, 48px); color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 40px; line-height: 1.8; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info .section-eyebrow { justify-content: flex-start; }
.contact-info .section-eyebrow::before { display: none; }
.contact-info .section-title { text-align: left; }
.contact-desc { font-size: 14px; line-height: 1.9; color: var(--text); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.5; }
.contact-item-label { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 3px; }
.contact-item-value { font-size: 14px; color: var(--navy); font-weight: 500; }
.contact-form { background: var(--white); border: 1px solid var(--light-gray); border-radius: 12px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.form-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 6px; font-family: var(--font-body); font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(57,118,188,0.1); background: var(--white); }
.form-input::placeholder, .form-textarea::placeholder { color: #b0bec5; }
.form-select option { background: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); border: none; border-radius: 6px; font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; }
.form-submit-btn:hover { background: linear-gradient(135deg, var(--blue-dark), var(--blue-deep)); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(57,118,188,0.3); }

/* FOOTER */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); }
.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 64px; }
.footer-brand .logo-main { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--white); letter-spacing: 0.02em; }
.footer-brand .logo-main span { color: var(--green); }
.footer-brand .logo-sub { font-family: var(--font-head); font-size: 9px; letter-spacing: 0.25em; color: rgba(255,255,255,0.35); text-transform: uppercase; display: block; margin-top: 2px; }
.footer-tagline { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-top: 16px; margin-bottom: 24px; max-width: 300px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.footer-col-title { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--blue); font-size: 14px; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); font-family: var(--font-head); }
.footer-certs { display: flex; gap: 16px; flex-wrap: wrap; }
.cert-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 5px 12px; font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s 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-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .markets-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:first-child { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .trust-band-inner { flex-direction: column; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-stats-row { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
