/* ========== DEAFINITY TECH - GLOBAL STYLES ========== */

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

:root {
  --primary: #0066FF;
  --primary-dark: #0044CC;
  --primary-light: #3385FF;
  --accent: #00D4FF;
  --accent2: #7B2FFF;
  --dark: #060C1A;
  --dark2: #0D1528;
  --dark3: #111D35;
  --card: #0E1A30;
  --card2: #142040;
  --border: rgba(0, 102, 255, 0.2);
  --border2: rgba(255,255,255,0.06);
  --text: #E8EEFF;
  --text-muted: #8A9BC4;
  --text-dim: #5A6E9C;
  --white: #ffffff;
  --success: #00E5A0;
  --gradient: linear-gradient(135deg, #0066FF, #7B2FFF);
  --gradient2: linear-gradient(135deg, #00D4FF, #0066FF);
  --glow: 0 0 40px rgba(0, 102, 255, 0.3);
  --glow2: 0 0 60px rgba(0, 102, 255, 0.15);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p { color: var(--text-muted); line-height: 1.8; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-text { color: var(--accent); }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; border: none;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0, 102, 255, 0.6); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--white); background: rgba(0,102,255,0.1); }
.btn-white {
  background: white; color: var(--dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.btn svg { width: 18px; height: 18px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6, 12, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .name { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }
.nav-logo-text .sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta { margin-left: 16px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(6, 12, 26, 0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2); padding: 20px 24px;
  flex-direction: column; gap: 8px; z-index: 999;
}
.mobile-menu a { display: block; padding: 12px 16px; border-radius: 10px; color: var(--text-muted); font-weight: 500; }
.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.mobile-menu.open { display: flex; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(0,102,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(123,47,255,0.1) 0%, transparent 50%),
              var(--dark);
  padding-top: 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(0,102,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,102,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; top: -100px; right: -100px; background: rgba(0,102,255,0.12); }
.hero-orb-2 { width: 350px; height: 350px; bottom: -50px; left: -50px; background: rgba(123,47,255,0.1); }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto; padding: 80px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,102,255,0.08); border: 1px solid var(--border);
  color: var(--accent); font-size: 0.8rem; font-weight: 600;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { margin-bottom: 24px; }
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 { display: block; }
.hero-desc { font-size: 1.1rem; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hero-stat { padding: 20px; background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius-sm); }
.hero-stat .num { font-size: 2rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; background: var(--gradient2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat .label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-phone-mock {
  width: 280px; background: var(--card); border: 1px solid var(--border);
  border-radius: 30px; padding: 24px; position: relative;
  box-shadow: var(--shadow), var(--glow);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }
.phone-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border2); }
.phone-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 1.1rem; }
.phone-info .name { font-weight: 600; font-size: 0.95rem; }
.phone-info .status { font-size: 0.78rem; color: var(--success); }
.call-waves { display: flex; align-items: center; justify-content: center; gap: 4px; height: 50px; margin: 16px 0; }
.call-waves span {
  display: block; width: 4px; background: var(--gradient);
  border-radius: 2px; animation: wave 1.2s ease-in-out infinite;
}
.call-waves span:nth-child(1){height:20px;animation-delay:0s}
.call-waves span:nth-child(2){height:35px;animation-delay:0.1s}
.call-waves span:nth-child(3){height:50px;animation-delay:0.2s}
.call-waves span:nth-child(4){height:35px;animation-delay:0.3s}
.call-waves span:nth-child(5){height:20px;animation-delay:0.4s}
.call-waves span:nth-child(6){height:35px;animation-delay:0.5s}
.call-waves span:nth-child(7){height:50px;animation-delay:0.4s}
.call-waves span:nth-child(8){height:35px;animation-delay:0.3s}
.call-waves span:nth-child(9){height:20px;animation-delay:0.2s}
@keyframes wave { 0%,100%{transform:scaleY(0.5);opacity:0.4} 50%{transform:scaleY(1);opacity:1} }
.phone-timer { text-align: center; font-size: 1.6rem; font-weight: 700; font-family: 'Space Grotesk',sans-serif; color: var(--white); margin-bottom: 20px; }
.phone-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.phone-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 8px; border-radius: 12px; background: var(--dark3);
  font-size: 0.7rem; color: var(--text-muted); cursor: pointer;
}
.phone-btn.red { background: rgba(255,50,50,0.1); color: #ff6b6b; }
.phone-btn.green { background: rgba(0,229,160,0.1); color: var(--success); }
.phone-btn svg { width: 20px; height: 20px; }
.floating-card {
  position: absolute; background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card-1 { top: 10%; right: -10px; animation-delay: 0s; }
.floating-card-2 { bottom: 10%; left: -10px; animation-delay: 2s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 4px; }
.fc-value { font-size: 1.1rem; font-weight: 700; color: var(--success); }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ========== SERVICES ========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 36px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient); opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--glow2); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(0,102,255,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--primary-light); }
.service-card h3 { margin-bottom: 12px; color: var(--white); }
.service-card p { font-size: 0.9rem; }
.service-features { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted); list-style: none;
}
.service-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ========== PRODUCTS ========== */
.products-section { background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,102,255,0.06) 0%, transparent 60%); }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.product-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--glow2); border-color: var(--border); }
.product-card-header {
  padding: 40px; background: linear-gradient(135deg, var(--card2), var(--card));
  border-bottom: 1px solid var(--border2); position: relative; overflow: hidden;
}
.product-card-header::after {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--gradient); opacity: 0.06;
}
.product-icon { width: 72px; height: 72px; border-radius: 20px; background: var(--gradient); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 8px 24px rgba(0,102,255,0.4); }
.product-icon svg { width: 36px; height: 36px; color: white; }
.product-card-header h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--white); }
.product-card-header p { font-size: 0.92rem; }
.product-card-body { padding: 32px 40px; }
.product-feature-list { display: flex; flex-direction: column; gap: 16px; }
.product-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px; border-radius: 10px; background: var(--dark3);
}
.pf-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(0,102,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pf-icon svg { width: 16px; height: 16px; color: var(--primary-light); }
.pf-text .title { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.pf-text .desc { font-size: 0.8rem; color: var(--text-muted); }
.product-cta { padding: 0 40px 40px; }

/* ========== WHY US ========== */
.why-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { margin-bottom: 20px; }
.why-content > p { margin-bottom: 40px; font-size: 1rem; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.why-feature:hover { border-color: var(--border); background: var(--card2); }
.wf-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,102,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wf-icon svg { width: 22px; height: 22px; color: var(--primary-light); }
.wf-title { font-weight: 600; margin-bottom: 4px; color: var(--white); }
.wf-desc { font-size: 0.85rem; color: var(--text-muted); }
.why-visual { position: relative; }
.why-card-stack { position: relative; padding: 20px; }
.stack-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 28px;
  margin-bottom: 16px; transition: var(--transition);
}
.stack-card:hover { border-color: var(--border); transform: translateX(8px); }
.sc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.sc-dot { width: 10px; height: 10px; border-radius: 50%; }
.sc-dot.green { background: var(--success); }
.sc-dot.blue { background: var(--primary); }
.sc-dot.purple { background: var(--accent2); }
.sc-title { font-weight: 600; font-size: 0.95rem; }
.sc-bar { height: 6px; background: var(--dark3); border-radius: 3px; overflow: hidden; }
.sc-bar-fill { height: 100%; border-radius: 3px; }
.sc-bar-fill.green { background: linear-gradient(90deg, var(--success), #00b377); }
.sc-bar-fill.blue { background: var(--gradient); }
.sc-bar-fill.purple { background: linear-gradient(90deg, var(--accent2), var(--primary)); }
.sc-value { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; text-align: right; }

/* ========== PROCESS ========== */
.process-section { position: relative; overflow: hidden; }
.process-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-timeline::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent2));
  opacity: 0.3;
}
.process-step { text-align: center; padding: 0 16px; position: relative; }
.ps-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif;
  color: var(--primary-light); position: relative; z-index: 1;
  transition: var(--transition);
}
.process-step:hover .ps-num { background: var(--gradient); border-color: transparent; color: white; transform: scale(1.1); }
.ps-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; color: var(--white); }
.ps-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--dark2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--border); }
.tc-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.tc-stars span { color: #FFB800; font-size: 1rem; }
.tc-text { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 24px; font-style: italic; line-height: 1.7; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 1rem; flex-shrink: 0;
}
.tc-name { font-weight: 600; font-size: 0.9rem; }
.tc-role { font-size: 0.78rem; color: var(--text-muted); }

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,102,255,0.12) 0%, transparent 70%);
}
.cta-box {
  max-width: 800px; margin: 0 auto; text-align: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 70px 60px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { margin-bottom: 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark2); border-top: 1px solid var(--border2);
  padding: 70px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 50px; }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand img { height: 44px; width: auto; object-fit: contain; }
.footer-brand .brand-name { font-family: 'Space Grotesk',sans-serif; font-weight: 700; font-size: 1.1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--primary); background: rgba(0,102,255,0.1); }
.social-link svg { width: 16px; height: 16px; color: var(--text-muted); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border2); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-dim); }

/* ========== PAGE HERO (Inner Pages) ========== */
.page-hero {
  padding: 160px 0 80px; text-align: center; position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,102,255,0.12) 0%, transparent 60%);
  overflow: hidden;
}
.page-hero-bg-grid { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(rgba(0,102,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(0,102,255,0.5) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--primary-light); }
.breadcrumb span { color: var(--text-dim); }

/* ========== ABOUT PAGE ========== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-mock {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-img-inner { text-align: center; padding: 40px; }
.about-big-icon { width: 100px; height: 100px; border-radius: 24px; background: var(--gradient); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 16px 48px rgba(0,102,255,0.5); }
.about-big-icon svg { width: 50px; height: 50px; color: white; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--border); }
.value-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(0,102,255,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.value-icon svg { width: 26px; height: 26px; color: var(--primary-light); }
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.85rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: var(--glow2); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800; color: white; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,102,255,0.4);
}
.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.team-role { font-size: 0.85rem; color: var(--primary-light); margin-bottom: 12px; }
.team-desc { font-size: 0.85rem; }

/* ========== SERVICES PAGE ========== */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
  margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--border2);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.sd-visual {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 40px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 24px;
}
.sd-icon { width: 80px; height: 80px; border-radius: 22px; background: var(--gradient); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 36px rgba(0,102,255,0.4); }
.sd-icon svg { width: 40px; height: 40px; color: white; }
.sd-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.sd-tag {
  padding: 6px 14px; border-radius: 50px;
  background: rgba(0,102,255,0.08); border: 1px solid var(--border);
  font-size: 0.78rem; color: var(--accent);
}
.sd-content h2 { margin-bottom: 16px; }
.sd-content p { margin-bottom: 24px; }
.sd-list { display: flex; flex-direction: column; gap: 12px; }
.sd-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--card); border: 1px solid var(--border2);
  border-radius: 10px; font-size: 0.88rem; color: var(--text-muted); list-style: none;
  transition: var(--transition);
}
.sd-list li:hover { border-color: var(--border); color: var(--text); }
.sd-list li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: rgba(0,229,160,0.1); border: 1px solid var(--success); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300E5A0'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 12px; margin-top: 1px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 40px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.pricing-card.featured { border-color: var(--primary); background: var(--card2); }
.pricing-card.featured::before { content: 'Popüler'; position: absolute; top: 20px; right: 20px; background: var(--gradient); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--glow2); }
.pc-name { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pc-price { font-size: 2.5rem; font-weight: 900; font-family: 'Space Grotesk',sans-serif; color: var(--white); margin-bottom: 8px; }
.pc-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pc-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border2); }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pc-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-muted); }
.pc-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ========== CONTACT PAGE ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 20px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--border); }
.cc-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,102,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-icon svg { width: 20px; height: 20px; color: var(--primary-light); }
.cc-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.cc-value { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.cc-value a { color: var(--white); }
.cc-value a:hover { color: var(--primary-light); }
.contact-form-box {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 48px;
}
.contact-form-box h3 { margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--dark3); border: 1.5px solid var(--border2);
  border-radius: 10px; padding: 14px 18px;
  color: var(--text); font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: var(--transition); outline: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: var(--dark2);
  box-shadow: 0 0 0 4px rgba(0,102,255,0.1);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.map-section { margin-top: 60px; }
.map-placeholder {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); height: 350px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  overflow: hidden; position: relative;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-timeline::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 28px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .contact-form-box { padding: 28px; }
}
