:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --accent: #45A0D4;
  --accent-glow: rgba(69, 160, 212, 0.15);
  --accent-light: #6bb8e6;
  --accent-dark: #3480ad;
  --text-primary: #eaeaf0;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --border: rgba(255,255,255,0.06);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
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; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s; }
nav.scrolled { background: rgba(10,10,15,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 10px 0; border-bottom: 1px solid var(--border); }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.3s; letter-spacing: 0.3px; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { background: var(--accent) !important; color: var(--bg-primary) !important; padding: 10px 24px !important; border-radius: 100px; font-weight: 600 !important; transition: transform 0.2s, box-shadow 0.3s !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 30px var(--accent-glow); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 120px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; }
.hero-bg .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(69,160,212,0.3), transparent 70%); top: -10%; right: -5%; animation: float 18s ease-in-out infinite; }
.hero-bg .orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(69,120,212,0.2), transparent 70%); bottom: 10%; left: -5%; animation: float 22s ease-in-out infinite reverse; }
.hero-bg .grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }
@keyframes float { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-30px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(0.95); } }
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px 6px 8px; background: var(--accent-glow); border: 1px solid rgba(69,160,212,0.2); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--accent); margin-bottom: 32px; animation: fadeInDown 0.8s ease-out; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 { font-family: var(--font-display); font-size: clamp(48px,6vw,80px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; margin-bottom: 28px; animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero h1 .gradient-text { background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 18px; line-height: 1.7; color: var(--text-secondary); max-width: 520px; margin-bottom: 40px; animation: fadeInUp 0.8s ease-out 0.4s both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.6s both; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: var(--accent); color: var(--bg-primary); font-family: var(--font-body); font-size: 15px; font-weight: 600; border: none; border-radius: 100px; cursor: pointer; transition: transform 0.2s, box-shadow 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--accent-glow); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: transparent; color: var(--text-primary); font-family: var(--font-body); font-size: 15px; font-weight: 500; border: 1px solid var(--border); border-radius: 100px; cursor: pointer; transition: border-color 0.3s, background 0.3s; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.03); }

/* STATS */
.stats-bar { position: relative; z-index: 1; padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-item h3 { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--accent); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.stat-item p { font-size: 14px; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

/* SECTION HEADERS */
.section { padding: 120px 0; }
.section-label { font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(36px,4vw,56px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
.section-subtitle { font-size: 17px; color: var(--text-secondary); max-width: 560px; line-height: 1.7; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 64px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 32px; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, background 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity 0.4s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(69,160,212,0.15); background: var(--bg-card-hover); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--accent-glow); border-radius: var(--radius-md); margin-bottom: 24px; color: var(--accent); }
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* CASE STUDIES */
.case-studies-section { background: var(--bg-secondary); }
.case-studies-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 64px; }
.case-card { background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s; cursor: pointer; }
.case-card:hover { transform: translateY(-4px); border-color: rgba(69,160,212,0.2); }
.case-card-img { width: 100%; height: 200px; object-fit: cover; display: block; border-bottom: 1px solid var(--border); transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.case-card:hover .case-card-img { transform: scale(1.04); }
.case-card-img-wrap { overflow: hidden; }
.case-card-header { padding: 20px 28px; background: linear-gradient(135deg, rgba(69,160,212,0.08), rgba(69,120,212,0.04)); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.case-card-category { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; background: var(--accent-glow); padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(69,160,212,0.15); }
.case-card-arrow { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--accent-glow); color: var(--accent); transition: background 0.3s, transform 0.3s; }
.case-card:hover .case-card-arrow { background: var(--accent); color: var(--bg-primary); transform: translateX(2px); }
.case-card-body { padding: 32px 28px; }
.case-card-body h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.5px; }
.case-card-body .subtitle { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 16px; }
.case-card-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.case-tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.case-tech-tag { font-size: 12px; font-weight: 500; color: var(--text-muted); background: var(--bg-card); padding: 4px 12px; border-radius: 100px; border: 1px solid var(--border); }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; padding: 24px; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-xl); max-width: 720px; width: 100%; max-height: 85vh; overflow-y: auto; transform: translateY(20px) scale(0.98); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
.modal-close { position: sticky; top: 0; float: right; margin: 16px 16px 0 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%; color: var(--text-secondary); cursor: pointer; transition: background 0.2s, color 0.2s; z-index: 1; }
.modal-close:hover { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }
.modal-header { padding: 48px 48px 0; background: linear-gradient(135deg, rgba(69,160,212,0.1), transparent); }
.modal-header .case-card-category { margin-bottom: 16px; }
.modal-header h2 { font-family: var(--font-display); font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 6px; }
.modal-header .subtitle { font-size: 16px; color: var(--accent); font-weight: 500; margin-bottom: 20px; }
.modal-header .website-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 20px; transition: opacity 0.2s; }
.modal-header .website-link:hover { opacity: 0.7; }
.modal-header p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.modal-section { padding: 32px 48px; }
.modal-section:last-child { padding-bottom: 48px; }
.modal-section h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.modal-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.modal-list li { font-size: 15px; color: var(--text-secondary); line-height: 1.6; padding-left: 20px; position: relative; }
.modal-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.modal-tech-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.modal-tech-tag { font-size: 13px; font-weight: 500; color: var(--text-primary); background: var(--bg-card); padding: 8px 18px; border-radius: 100px; border: 1px solid var(--border); }
.modal-gallery { position: relative; margin-top: 12px; }
.modal-gallery-track { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.modal-gallery-track::-webkit-scrollbar { display: none; }
.modal-gallery-track img { min-width: 280px; max-width: 320px; height: 200px; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border); scroll-snap-align: start; flex-shrink: 0; background: var(--bg-card); cursor: pointer; transition: border-color 0.3s; }
.modal-gallery-track img:hover { border-color: rgba(69,160,212,0.3); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(10,10,15,0.85); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 50%; color: var(--text-primary); cursor: pointer; transition: background 0.2s, border-color 0.2s; z-index: 2; }
.gallery-nav:hover { background: var(--accent); border-color: var(--accent); color: var(--bg-primary); }
.gallery-nav.prev { left: -12px; }
.gallery-nav.next { right: -12px; }
.modal-hero-img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border); margin-top: 24px; }

/* LIGHTBOX */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; padding: 0; }
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: #fff; cursor: pointer; transition: background 0.2s, transform 0.2s; z-index: 3001; backdrop-filter: blur(8px); }
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.1); }
.lightbox-inner { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.lightbox-img-wrap { display: flex; align-items: center; justify-content: center; width: calc(100% - 160px); height: 100%; padding: 60px 0; }
.lightbox-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; color: #fff; cursor: pointer; transition: background 0.2s, border-color 0.2s; z-index: 3001; backdrop-filter: blur(8px); }
.lightbox-nav:hover { background: var(--accent); border-color: var(--accent); color: var(--bg-primary); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.5); z-index: 3001; }

/* TECHNOLOGIES */
.tech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 64px; }
.tech-item { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-card); transition: border-color 0.3s; }
.tech-item:hover { border-color: rgba(69,160,212,0.2); }
.tech-item h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--accent); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.tech-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ABOUT */
.about-section { background: var(--bg-secondary); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.about-visual { position: relative; height: 480px; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, var(--bg-card), var(--bg-primary)); border: 1px solid var(--border); }
.about-visual-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 140px; font-weight: 800; color: rgba(69,160,212,0.06); letter-spacing: -8px; }
.about-visual .elevation-tag { position: absolute; bottom: 32px; left: 32px; background: rgba(10,10,15,0.8); backdrop-filter: blur(12px); padding: 16px 24px; border-radius: var(--radius-md); border: 1px solid var(--border); }
.elevation-tag .number { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--accent); letter-spacing: -1px; }
.elevation-tag .label { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(36px,3.5vw,48px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 24px; }
.about-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.value-item { padding: 20px; background: var(--bg-primary); border-radius: var(--radius-md); border: 1px solid var(--border); }
.value-item h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.value-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* TESTIMONIALS */
.testimonials-section { background: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 64px; }
.testimonial-card { background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; transition: transform 0.3s; }
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; color: #f0b429; }
.testimonial-card blockquote { font-size: 15px; color: var(--text-secondary); line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--accent); flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 64px; }
.contact-info { padding-top: 16px; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.contact-detail-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--accent-glow); border-radius: var(--radius-sm); color: var(--accent); flex-shrink: 0; }
.contact-detail-text .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-detail-text .value { font-size: 15px; font-weight: 500; }

/* GRAVITY FORMS OVERRIDES */
.gform_wrapper { max-width: 100% !important; }
.gform_wrapper .gfield { margin-bottom: 20px !important; }
.gform_wrapper .gfield_label { font-size: 13px !important; font-weight: 500 !important; color: var(--text-secondary) !important; letter-spacing: 0.3px; }
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper textarea,
.gform_wrapper select { background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important; padding: 14px 16px !important; color: var(--text-primary) !important; font-family: var(--font-body) !important; font-size: 15px !important; transition: border-color 0.3s !important; outline: none !important; width: 100% !important; }
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus { border-color: var(--accent) !important; box-shadow: 0 0 0 3px var(--accent-glow) !important; }
.gform_wrapper textarea { min-height: 140px !important; resize: vertical !important; }
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] { display: inline-flex !important; align-items: center !important; gap: 10px !important; padding: 16px 32px !important; background: var(--accent) !important; color: var(--bg-primary) !important; font-family: var(--font-body) !important; font-size: 15px !important; font-weight: 600 !important; border: none !important; border-radius: 100px !important; cursor: pointer !important; transition: transform 0.2s, box-shadow 0.3s !important; }
.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover { transform: translateY(-2px) !important; box-shadow: 0 12px 40px var(--accent-glow) !important; }
.gform_wrapper .gfield_required { color: var(--accent) !important; }
.gform_wrapper .validation_error { color: #e74c3c !important; background: rgba(231,76,60,0.1) !important; border: 1px solid rgba(231,76,60,0.2) !important; border-radius: var(--radius-sm) !important; padding: 12px 16px !important; }
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea { border-color: rgba(231,76,60,0.4) !important; }
.gform_confirmation_message { color: var(--accent) !important; font-size: 16px !important; padding: 24px !important; background: var(--accent-glow) !important; border-radius: var(--radius-md) !important; border: 1px solid rgba(69,160,212,0.2) !important; }

/* CTA */
.cta-banner { padding: 120px 0; background: var(--bg-secondary); }
.cta-inner { background: linear-gradient(135deg, rgba(69,160,212,0.08), rgba(69,120,212,0.06)); border: 1px solid rgba(69,160,212,0.12); border-radius: var(--radius-xl); padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(69,160,212,0.05) 0%, transparent 50%); animation: float 20s ease-in-out infinite; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(36px,4vw,52px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 16px; position: relative; }
.cta-inner p { font-size: 17px; color: var(--text-secondary); margin-bottom: 36px; position: relative; }
.cta-inner .btn-primary { position: relative; }

/* FOOTER */
footer { padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-left p { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 360px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .modal-header, .modal-section { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,15,0.95); backdrop-filter: blur(20px); padding: 32px 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .services-grid, .testimonials-grid, .case-studies-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item h3 { font-size: 36px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .about-values { grid-template-columns: 1fr; }
  .modal-header, .modal-section { padding-left: 24px; padding-right: 24px; }
  .modal-header h2 { font-size: 28px; }
  .cta-inner { padding: 48px 28px; }
  .lightbox-img-wrap { width: calc(100% - 80px); }
  .lightbox-nav { width: 36px; height: 36px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
}
