:root {
  --primary: #000000;
  --primary-light: #ff0071;
  --accent: #ff0071;
  --accent-warm: #f5a623;
  --bg: #fafaf8;
  --bg-dark: #000;
  --text: #0a1a14;
  --text-mid: #3d5046;
  --text-muted: #7a9080;
  --border: #dde8e3;
  --white: #ffffff;
  --card-bg: #f0f5f2;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {margin: 0; padding: 0; font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; cursor: none; }

/* CUSTOM CURSOR */
.cursor { width: 12px; height: 12px; background: var(--accent); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease; }
.cursor-trail { width: 36px; height: 36px; border: 1.5px solid var(--accent); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99998; transform: translate(-50%, -50%); transition: transform 0.25s ease, width 0.3s ease, height 0.3s ease; opacity: 0.5; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); background: rgba(250,250,248,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); z-index: 1000; display: flex; align-items: center; padding: 0 5%; transition: background 0.3s, box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 40px rgba(255,0,113,0.08); }

.nav-logo {font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--primary); text-decoration: none; flex-shrink: 0; display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-icon { height: 36px; background: #000 var(--primary-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: white; font-weight: 800; transition: transform 0.3s ease; }
.nav-logo:hover .logo-icon { transform: rotate(10deg) scale(1.1); }

.nav-center { display: flex; align-items: center; gap: 8px; margin: 0 auto; }
.nav-item { position: relative; }
.nav-link { font-size: 0.88rem; font-weight: 500; color: var(--text-mid); background: none; border: none; padding: 8px 14px; border-radius: 8px; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 4px; text-decoration: none; white-space: nowrap; }
.nav-link:hover, .nav-link.active-page { color: var(--primary); background: var(--card-bg); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* MEGA MENU */
.mega-menu { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(-8px); background: white; border-radius: 20px; box-shadow: 0 20px 80px rgba(10,61,46,0.15), 0 0 0 1px rgba(10,61,46,0.06); padding: 28px; opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); min-width: 520px; }
.mega-menu.wide { min-width: 680px; }
.nav-item:hover .mega-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.mega-grid.three { grid-template-columns: repeat(3, 1fr); }
.mega-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px; border-radius: 12px; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.mega-item:hover { background: var(--card-bg); }
.mega-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.mega-icon.green { background: #e8f8f3; }
.mega-icon.blue { background: #e8f0ff; }
.mega-icon.orange { background: #fff4e8; }
.mega-icon.purple { background: #f3e8ff; }
.mega-text strong { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.mega-text span { font-size: 0.79rem; color: var(--text-muted); line-height: 1.4; }
.mega-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 10px; padding: 0 14px; }
.mega-divider { height: 1px; background: var(--border); margin: 12px 0; }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-ghost { font-size: 0.87rem; font-weight: 500; color: var(--text-mid); background: none; border: none; padding: 8px 16px; border-radius: 8px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-ghost:hover { background: var(--card-bg); color: var(--primary); }
.btn-primary {font-size: 0.87rem; font-weight: 600; color: white; background: var(--primary); border: none; padding: 9px 14px; border-radius: 9px; cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,61,46,0.25); }
.btn-accent { background: var(--accent); color: white; font-size: 1rem; font-weight: 600; border: none; padding: 14px 32px; border-radius: 12px; cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-accent:hover { background: #d4005f; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(148,0,211,0.35); }
.btn-outline { background: transparent; color: var(--primary); font-size: 1rem; font-weight: 600; border: 1.5px solid var(--primary); padding: 13px 32px; border-radius: 12px; cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 8px; transition: background 0.2s; background: none; border: none; margin-left: auto; }
.hamburger:hover { background: var(--card-bg); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu { position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: white; z-index: 999; padding: 24px 24px 40px; overflow-y: auto; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-section { margin-bottom: 32px; }
.mobile-menu-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 12px; }
.mobile-menu-link { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 1.05rem; font-weight: 500; color: var(--text); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.mobile-menu-link:hover { color: var(--accent); }
.mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* HERO */
.hero { min-height: 100vh; padding: calc(var(--nav-height) + 60px) 5% 80px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--bg); z-index: 0; }
.hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,0,113,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,0,113,0.05) 1px, transparent 1px); background-size: 60px 60px; z-index: 0; }
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 8s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: rgba(255,0,113,0.12); top: -100px; right: -50px; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: rgba(255,0,113,0.08); bottom: 50px; left: -80px; animation-delay: 3s; }
.orb-3 { width: 250px; height: 250px; background: rgba(0,0,0,0.08); top: 200px; right: 35%; animation-delay: 5s; }
@keyframes orbFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(225,0,113,0.1); border: 1px solid rgba(225,0,113,0.2); color: var(--primary); font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; margin-bottom: 28px; animation: fadeUp 0.8s ease both; }
.tag-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.2rem, 6vw, 5.2rem); font-weight: 800; line-height: 1.05; color: var(--primary); margin-bottom: 24px; animation: fadeUp 0.8s ease 0.1s both; }
.hero h1 .accent-word { color: var(--accent); position: relative; display: inline-block; }
.hero h1 .accent-word::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 6px; background: rgba(148,0,211,0.6); border-radius: 3px; z-index: -1; }
.hero p { font-size: 1.15rem; color: var(--text-mid); line-height: 1.7; max-width: 560px; margin-bottom: 40px; animation: fadeUp 0.8s ease 0.2s both; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }
.hero-stats { display: flex; gap: 40px; margin-top: 60px; animation: fadeUp 0.8s ease 0.4s both; flex-wrap: wrap; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; background: var(--border); }

/* 3D HERO CARD */
.hero-visual { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 1; width: 420px; animation: fadeUp 1s ease 0.3s both; }
.hero-card-3d { background: white; border-radius: 24px; padding: 28px; box-shadow: 0 32px 80px rgba(10,61,46,0.14), 0 0 0 1px rgba(10,61,46,0.06); transform: perspective(1000px) rotateY(-8deg) rotateX(4deg); transition: transform 0.6s ease; position: relative; overflow: hidden; }
.hero-card-3d::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--primary-light)); border-radius: 24px 24px 0 0; }
.hero-visual:hover .hero-card-3d { transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) translateY(-8px); }
.card-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.card-logo-small { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.card-logo-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.status-badge { background: rgba(0,196,140,0.1); color: var(--accent); font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.project-preview { background: var(--card-bg); border-radius: 14px; padding: 20px; margin-bottom: 16px; }
.project-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.project-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.project-pct { font-size: 0.8rem; font-weight: 700; color: var(--accent); }
.progress-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--primary-light)); border-radius: 3px; animation: progressFill 2s ease 1s both; transform-origin: left; }
@keyframes progressFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.card-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric-box { background: var(--card-bg); border-radius: 12px; padding: 14px; }
.metric-val { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.metric-val small { font-size: 0.8rem; color: var(--accent); }
.metric-lbl { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }
.card-avatars { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.avatar-stack { display: flex; }
.avatar { width: 30px; height: 30px; border-radius: 50%; border: 2px solid white; margin-right: -10px; background: linear-gradient(135deg, var(--accent), var(--primary)); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: white; }
.avatar-count { font-size: 0.78rem; color: var(--text-muted); margin-left: 16px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* SECTIONS */
.section { padding: 100px 5%; }
.section-sm { padding: 70px 5%; }
.container { max-width: 1180px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); border-radius: 1px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--primary); line-height: 1.15; margin-bottom: 18px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; max-width: 560px; }

/* MARQUEE */
.marquee-section { background: var(--primary); padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; animation: marqueeScroll 20s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 20px; padding: 0 40px; font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.7); white-space: nowrap; }
.marquee-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.service-card { background: white; border-radius: 20px; padding: 32px; border: 1px solid var(--border); cursor: pointer; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--primary-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(10,61,46,0.12); border-color: transparent; }
.service-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; transition: transform 0.3s ease; }
.service-card:hover .service-icon { transform: scale(1.15) rotate(5deg); }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.service-link { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--accent); text-decoration: none; cursor: pointer; transition: gap 0.2s; }
.service-card:hover .service-link { gap: 10px; }

/* PORTFOLIO */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.portfolio-card { border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 16/10; background: var(--primary); }
.portfolio-card.large { grid-column: span 2; aspect-ratio: 21/9; }
.portfolio-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(255,255,255,0.2); }
.portfolio-overlay { position: absolute; inset: 0; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(148,0,211,0.9) 0%, transparent 60%); }
.portfolio-tag { background: var(--accent); color: white; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 8px; align-self: flex-start; }
.portfolio-overlay h3 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 6px; }
.portfolio-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.portfolio-arrow { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(10px); transition: all 0.3s ease; }
.portfolio-card:hover .portfolio-arrow { opacity: 1; transform: translateY(0); }
.portfolio-card:hover .portfolio-img-placeholder { opacity: 0.6; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 30px; }
.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: 14px; transition: background 0.3s ease; }
.why-item:hover { background: var(--card-bg); }
.why-num { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 800; color: var(--accent); background: rgba(0,196,140,0.1); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-text strong { display: block; font-weight: 600; font-size: 0.95rem; color: var(--primary); margin-bottom: 5px; }
.why-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.why-card-big { background: var(--primary); border-radius: 24px; padding: 36px; color: white; position: relative; overflow: hidden; }
.why-card-big::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: rgba(255,0,113,0.15); border-radius: 50%; }
.why-badge { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 16px; margin-bottom: 24px; display: inline-block; }
.why-card-big h3 { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; position: relative; }
.why-card-big p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.why-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.why-tag { background: rgba(148,0,211,0.2); color: var(--accent); font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.floating-badge { position: absolute; bottom: -16px; right: 24px; background: white; border-radius: 14px; padding: 14px 18px; box-shadow: 0 12px 40px rgba(10,61,46,0.15); display: flex; align-items: center; gap: 10px; }
.floating-badge-icon { width: 36px; height: 36px; background: rgba(0,196,140,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.floating-badge strong { font-size: 1.1rem; font-weight: 800; font-family: 'Syne', sans-serif; color: var(--primary); display: block; }
.floating-badge span { font-size: 0.72rem; color: var(--text-muted); }
.why-visual { position: relative; }

/* TESTIMONIALS */
.testimonials-section { background: var(--card-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.testimonial-card { background: white; border-radius: 20px; padding: 28px; border: 1px solid var(--border); transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,61,46,0.1); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; font-size: 1rem; color: #f5a623; }
.testimonial-card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--primary)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.9rem; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.87rem; color: var(--primary); }
.author-role { font-size: 0.76rem; color: var(--text-muted); }

/* PROCESS */
.process-steps { display: flex; gap: 0; margin-top: 60px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 1px; background: var(--border); z-index: 0; }
.process-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: white; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--primary); transition: all 0.3s ease; }
.process-step:hover .step-circle { background: var(--accent); color: white; border-color: var(--accent); transform: scale(1.15); }
.process-step h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.process-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* CTA SECTION */
.cta-section { background: var(--primary); border-radius: 32px; margin: 0 5% 100px; padding: 80px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -80px; left: -80px; width: 300px; height: 300px; background: rgba(255,0,113,0.12); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 300px; height: 300px; background: rgba(255,0,113,0.08); border-radius: 50%; }
.cta-section * { position: relative; z-index: 1; }
.cta-section h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer.main-footer { background: var(--bg-dark); color: white; padding: 80px 5% 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: white; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 34px; height: 34px; background: linear-gradient(135deg, var(--accent), var(--primary-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; }
.footer-desc { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.footer-contact a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 6px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.87rem; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,0,113,1); }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; cursor: pointer; border: none; text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.social-btn:hover { background: var(--accent); color: white; transform: translateY(-3px); }
footer.mini-footer { background: var(--bg-dark); color: white; padding: 40px 5%; text-align: center; }
footer.mini-footer p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
footer.mini-footer a { color: var(--accent); text-decoration: none; }

/* PAGE HERO */
.page-hero { padding: calc(var(--nav-height) + 80px) 5% 80px; background: linear-gradient(160deg, #f0f8f5 0%, var(--bg) 100%); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(255,0,113,0.07); border-radius: 50%; pointer-events: none; }

/* ABOUT PAGE */
.about-hero { min-height: 70vh; padding: calc(var(--nav-height) + 80px) 5% 80px; position: relative; overflow: hidden; display: flex; align-items: center; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.team-card { border-radius: 20px; overflow: hidden; background: var(--card-bg); transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,61,46,0.12); }
.team-photo { height: 220px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.team-photo::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 120px; height: 120px; background: rgba(0,196,140,0.15); border-radius: 50%; }
.team-info { padding: 20px; }
.team-info h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; }
.team-info span { font-size: 0.8rem; color: var(--accent); font-weight: 600; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.value-card { background: var(--card-bg); border-radius: 20px; padding: 32px; transition: all 0.3s ease; }
.value-card:hover { background: var(--primary); }
.value-card:hover h3, .value-card:hover p { color: white; }
.value-card:hover .value-icon { background: rgba(255,255,255,0.1); }
.value-icon { width: 52px; height: 52px; background: white; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; transition: background 0.3s; }
.value-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--primary); margin-bottom: 10px; transition: color 0.3s; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; transition: color 0.3s; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.blog-card { border-radius: 20px; overflow: hidden; background: white; border: 1px solid var(--border); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(10,61,46,0.1); border-color: transparent; }
.blog-thumb { height: 200px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.blog-thumb-accent { position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; background: rgba(0,196,140,0.2); border-radius: 50%; }
.blog-body { padding: 24px; }
.blog-cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 10px; }
.blog-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.3; }
.blog-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.76rem; color: var(--text-muted); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; margin-top: 60px; align-items: start; }
.contact-info h3 { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.contact-info p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--card-bg); border-radius: 14px; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(0,196,140,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.contact-detail-text span { font-size: 0.85rem; color: var(--text-mid); }
.contact-form { background: white; border-radius: 24px; padding: 40px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text); background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,196,140,0.12); }
.form-group textarea { min-height: 120px; }

/* SERVICE DETAIL HERO */
.service-detail-hero { min-height: 60vh; padding: calc(var(--nav-height) + 80px) 5% 80px; display: flex; align-items: center; position: relative; overflow: hidden; background:  var(--primary); color: white; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.feature-card { background: white; border-radius: 18px; padding: 28px; border: 1px solid var(--border); transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,61,46,0.08); }
.feature-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--primary); margin-bottom: 10px; margin-top: 14px; }
.feature-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.pricing-card { background: white; border-radius: 24px; padding: 36px; border: 1px solid var(--border); position: relative; transition: all 0.3s ease; }
.pricing-card.featured { background: var(--primary); border-color: var(--primary); transform: translateY(-8px); }
.pricing-card:not(.featured):hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(10,61,46,0.1); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 100px; white-space: nowrap; }
.pricing-tier { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.6); }
.pricing-price { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.pricing-card.featured .pricing-price { color: white; }
.pricing-per { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card.featured .pricing-per { color: rgba(255,255,255,0.5); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--text-mid); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-features li::before { content: '✓'; width: 20px; height: 20px; background: rgba(0,196,140,0.12); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }

/* FAQ */
.faq-list { max-width: 720px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: all 0.3s ease; }
.faq-item.open { border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,196,140,0.1); }
.faq-q { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--primary); text-align: left; gap: 16px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--card-bg); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s ease, background 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 20px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s 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; }

/* PAGE TRANSITION */
.page-enter { animation: pageIn 0.4s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-center { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn-ghost { display: none; }
  .hero { padding: calc(var(--nav-height) + 40px) 5% 60px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.large { grid-column: span 1; aspect-ratio: 16/10; }
  .testimonials-grid, .values-grid, .blog-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .process-steps::before { display: none; }
  .cta-section { padding: 48px 28px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .mega-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-accent, .btn-outline { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  nav { padding: 0 4%; }
  .section { padding: 60px 4%; }
  .section-sm { padding: 50px 4%; }
  .cta-section { margin: 0 4% 60px; }
  .contact-form { padding: 24px; }
  .why-card-big { padding: 24px; }
  .team-grid { grid-template-columns: 1fr; }
}
