@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

:root {
  --bg: #050505;
  --card: rgba(25, 25, 25, 0.65);
  --border: rgba(255, 255, 255, 0.06);
  --primary: #FBB03B;
  --text: #ffffff;
  --muted: #8e8e8e;
  --glass-bg: rgba(10, 10, 10, 0.5);
  --glass-border: rgba(255, 255, 255, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: transparent !important;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

/* =========================================
   1. PRELOADER (İTALİK EL YAZISI)
========================================= */
.preloader {
  position: fixed; 
  inset: 0; 
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px); 
  -webkit-backdrop-filter: blur(15px);
  display: flex; 
  justify-content: center; 
  align-items: center;
  z-index: 10000; 
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-blackram {
  position: relative; 
  font-family: 'Dancing Script', cursive; 
  font-style: italic;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  letter-spacing: 2px; 
  line-height: 1; 
  margin-bottom: 5px;
  color: transparent; 
  -webkit-text-stroke: 1.5px rgba(251, 176, 59, 0.35);
}

.text-blackram::before {
  content: attr(data-text); 
  position: absolute; 
  left: 0; top: 0;
  color: var(--primary); 
  width: 0; 
  overflow: hidden; 
  white-space: nowrap;
  border-right: 4px solid var(--primary);
  animation: fillText 0.5s cubic-bezier(0.75, 0, 0.25, 1) 0.1s forwards;
}

.text-software {
  position: relative; 
  font-size: clamp(1.2rem, 4vw, 2rem); 
  font-weight: 500;
  letter-spacing: 12px; 
  text-transform: uppercase; 
  margin-right: -12px;
  color: transparent; 
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  font-family: 'Inter', sans-serif;
}

.text-software::before {
  content: attr(data-text); 
  position: absolute; 
  left: 0; top: 0;
  color: #ffffff; 
  width: 0; 
  overflow: hidden; 
  white-space: nowrap;
  animation: fillText 0.3s cubic-bezier(0.75, 0, 0.25, 1) 0.6s forwards;
}

@keyframes fillText {
  0% { width: 0%; border-color: inherit; }
  99% { border-color: inherit; }
  100% { width: 100%; border-color: transparent; }
}

/* =========================================
   2. PREMIUM AI NETWORK BACKGROUND
========================================= */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background-color: #050505;
  overflow: hidden;
}

.cyber-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 160, 23, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}

.ambient-light {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.top-left {
  top: -450px;
  left: -450px;
  background: radial-gradient(circle, #D4A017, transparent 70%);
}

.bottom-right {
  bottom: -450px;
  right: -450px;
  background: radial-gradient(circle, #ff8c00, transparent 70%);
}

#networkCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

/* =========================================
   3. SAYDAM BÖLÜMLER
========================================= */
.dark-section {
  background: rgba(9, 9, 9, 0.25) !important; 
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px);
}

footer {
  background: rgba(5, 5, 5, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* =========================================
   4. GENEL DÜZEN VE BİLEŞENLER
========================================= */
.container {
  width: min(1200px, 90%);
  margin: auto;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(5, 5, 5, 0.4);
  border-bottom: 1px solid var(--glass-border);
}

.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

nav a {
  color: #d1d1d1;
  text-decoration: none;
  transition: .3s;
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

.btn {
  border: none;
  cursor: pointer;
  transition: .35s cubic-bezier(0.25, 1, 0.5, 1);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.primary-btn {
  background: var(--primary);
  color: #000;
  padding: 12px 24px;
  border-radius: 12px;
}

.primary-btn:hover {
  box-shadow: 0 8px 30px rgba(251, 176, 59, 0.35);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 12px 24px;
  border-radius: 12px;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero { 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  position: relative; 
  padding-top: 80px; 
}

.hero-content {
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .06);
  margin-bottom: 30px;
  background: rgba(255, 255, 255, .02);
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.hero h1 span {
  background: linear-gradient(90deg, #FBB03B, #ff8c00, #ffc86b, #FBB03B);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 5s linear infinite;
}

@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero p {
  max-width: 720px;
  margin: auto;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.large-btn {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.hero-stats {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.hero-stats h2 {
  color: var(--primary);
  font-size: 2.8rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-subtitle {
  color: var(--primary);
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
}

.section-header h2 {
  margin-top: 15px;
  font-size: 3rem;
  letter-spacing: -1px;
}

.about-grid, .services-grid, .projects-grid, .process-grid {
  display: grid;
  gap: 25px;
}

.about-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.projects-grid { grid-template-columns: repeat(2, 1fr); }
.process-grid { grid-template-columns: repeat(4, 1fr); }

/* =========================================
   5. KART TASARIMLARI & HOVER EFEKTLERİ
========================================= */
.about-card, .service-card, .project-card, .process-card {
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 35px;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}

.about-card:hover, .project-card:hover, .process-card:hover {
  border-color: rgba(251, 176, 59, .35);
  background: rgba(20, 20, 20, 0.6);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.featured-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.4), rgba(12, 12, 12, 0.4));
  border: 1px solid rgba(251, 176, 59, .25);
}

/* Service Card Özel Efektleri */
.service-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(251, 176, 59, 0.12);
  border-color: rgba(251, 176, 59, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), text-shadow 0.4s ease;
}

.service-card:hover i {
  transform: scale(1.3);
  text-shadow: 0 0 18px rgba(251, 176, 59, 0.7);
}

.service-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* Proje Kartları */
.project-card { overflow: hidden; }
.project-image {
  height: 240px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1d1d1d, #0a0a0a);
  margin-bottom: 25px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-size: cover;
  background-position: center;
}
.project-image.second { background: linear-gradient(135deg, #2a1b00, #0a0a0a); }
.project-card:hover .project-image { transform: scale(1.04); }

.project-content h3 { margin: 10px 0; }
.project-content p { color: var(--muted); font-size: 0.95rem; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: .8rem;
  color: var(--muted);
}

.process-number {
  color: var(--primary);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.process-card p { color: var(--muted); font-size: 0.95rem; margin-top: 10px; }

/* =========================================
   6. DİĞER BÖLÜMLER (CTA, Footer, Team, vs.)
========================================= */
.cta-section { padding: 140px 0; }
.cta-container {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.5), rgba(9, 9, 9, 0.5));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(251, 176, 59, .2);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
}
.cta-container h2 { font-size: 3.2rem; letter-spacing: -2px; margin-bottom: 20px; }
.cta-container p { color: var(--muted); margin-bottom: 35px; font-size: 1.1rem; }

footer { padding: 80px 0 30px; border-top: 1px solid rgba(255, 255, 255, 0.03); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-logo { height: 60px; margin-bottom: 20px; }
footer p, footer a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
footer a:hover { color: var(--primary); }
footer ul { list-style: none; }
footer li { margin-bottom: 12px; }

.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); transition: .3s;
}
.socials a:hover { background: var(--primary); color: #000; transform: translateY(-3px); }

.copyright { margin-top: 60px; text-align: center; color: #444; font-size: 0.9rem; }

/* Referanslar Marquee */
.references-section {
  margin-top: 60px;
  padding: 40px 0;
  background: rgba(5, 5, 5, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.references-title {
  text-align: center;
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: scrollMarquee 25s linear infinite;
  min-width: 200%;
}

.brand-item {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: default;
}

.brand-item i { font-size: 1.2rem; }
.brand-item:hover { color: var(--primary); transform: scale(1.05); }

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Teknolojiler ve Ekip */
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 20px; text-align: center; }
.tech-item { background: var(--card); border: 1px solid var(--border); padding: 30px 15px; border-radius: 16px; transition: 0.3s; }
.tech-item:hover { border-color: var(--primary); transform: translateY(-5px); }
.tech-item i { font-size: 2.5rem; color: var(--muted); margin-bottom: 15px; transition: 0.3s; }
.tech-item:hover i { color: var(--primary); }
.tech-item span { display: block; font-size: 0.9rem; font-weight: 500; }

.team-container { display: flex; justify-content: center; }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; text-align: center; max-width: 400px; }
.team-avatar img { width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--primary); margin-bottom: 20px; object-fit: cover; }
.team-card h3 { font-size: 1.5rem; }
.role { color: var(--primary); font-size: 0.9rem; font-weight: 600; margin: 5px 0 15px; }
.bio { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.team-socials a { color: var(--text); font-size: 1.2rem; margin: 0 10px; transition: 0.3s; }
.team-socials a:hover { color: var(--primary); }

/* =========================================
   7. MODALLAR VE FORMLAR
========================================= */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 90%; max-width: 600px;
  padding: 40px; border-radius: 28px;
  position: relative;
  transform: translateY(40px) scale(0.96);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  max-height: 90vh; 
  overflow-y: auto;
  overscroll-behavior: contain; /* GÜNCELLEME: ARKAYA KAYMAYI ENGELLER */
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }

.close-modal {
  position: absolute; top: 20px; right: 20px;
  font-size: 1.3rem; color: var(--muted);
  cursor: pointer; background: none; border: none;
  transition: color 0.3s ease;
}
.close-modal:hover { color: var(--primary); }
.modal-header { margin-bottom: 25px; text-align: center; }
.modal-header h2 { font-size: 1.8rem; margin-bottom: 8px; letter-spacing: -1px; }
.modal-header p { color: var(--muted); font-size: 0.95rem; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; color: #b5b5b5; font-size: 0.88rem; font-weight: 500; transition: color 0.3s; }

.form-control {
  width: 100%; padding: 14px 18px;
  background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.08);
  color: white; border-radius: 14px;
  outline: none; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  font-family: inherit; font-size: 0.95rem;
}
.form-control:focus {
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(251, 176, 59, 0.12);
}
.form-group:focus-within label { color: var(--primary); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* =========================================
   8. TOAST, BOT VE DİĞER EKLENTİLER
========================================= */
#toast-container {
  position: fixed; bottom: 30px; left: 30px; z-index: 9999;
  display: flex; flex-direction: column; gap: 12px; pointer-events: none;
}
.toast {
  padding: 16px 24px; border-radius: 14px; background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05); border-left: 4px solid var(--primary);
  color: #fff; font-weight: 500; font-size: 0.95rem;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  transform: translateX(-110%); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2), opacity 0.4s ease;
  pointer-events: auto;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.hide { transform: translateX(-120%); opacity: 0; }
.toast-icon { font-size: 1.1rem; color: var(--primary); }

.floating-socials { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 1000; }
.floating-socials a {
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.5); transition: all 0.3s ease;
}
.float-wa { background: #25D366; }
.float-ig { background: #E1306C; }
.float-in { background: #0077b5; }
.floating-socials a:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.7); color: white; }

.ai-chatbot-container { position: fixed; bottom: 30px; left: 30px; z-index: 9999; }
.ai-chat-btn {
  width: 60px; height: 60px; border-radius: 20px; background: var(--primary);
  color: #000; border: none; font-size: 1.5rem; cursor: pointer;
  box-shadow: 0 10px 20px rgba(251, 176, 59, 0.3); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ai-chat-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(251, 176, 59, 0.5); }
.ai-chat-panel {
  position: absolute; bottom: 80px; left: 0; width: 340px; height: 450px;
  background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 25px;
  display: flex; flex-direction: column; opacity: 0; visibility: hidden;
  transform: scale(0.8); transform-origin: bottom left; transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.ai-chat-panel.active { opacity: 1; visibility: visible; transform: scale(1); }
.chat-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.chat-messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
.message { padding: 12px 16px; border-radius: 15px; font-size: 0.9rem; max-width: 80%; }
.bot-msg { background: rgba(255,255,255,0.05); align-self: flex-start; border-bottom-left-radius: 5px; }
.user-msg { background: var(--primary); color: #000; align-self: flex-end; border-bottom-right-radius: 5px; font-weight: 500; }
.chat-input-area { padding: 15px; display: flex; gap: 10px; border-top: 1px solid rgba(255,255,255,0.05); }
.chat-input-area input { flex: 1; background: transparent; border: none; color: #fff; outline: none; padding: 5px; }
.chat-input-area button { background: none; border: none; color: var(--primary); cursor: pointer; font-size: 1.2rem; }

/* =========================================
   9. ANİMASYONLAR VE MEDİA SORGULARI
========================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }
.delay-4 { transition-delay: .60s; }
.delay-5 { transition-delay: .75s; }

@media(max-width: 992px) {
  .about-grid, .projects-grid, .process-grid, .footer-grid, .services-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  nav {
    position: absolute; top: 72px; left: 0; width: 100%;
    background: rgba(5,5,5,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 30px; gap: 20px;
    border-bottom: 1px solid var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease;
  }
  nav.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  nav .btn { width: 100%; justify-content: center; }
  .navbar > .primary-btn { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons, .hero-stats { flex-direction: column; align-items: center; gap: 30px; }
  .cta-container { padding: 50px 25px; }
  .cta-container h2 { font-size: 2.2rem; }
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
}

@media(max-width: 768px) {
  .floating-socials { bottom: 20px; right: 20px; }
  .floating-socials a { width: 45px; height: 45px; font-size: 1.2rem; }
  .marquee-content { gap: 40px; }
  .brand-item { font-size: 1.1rem; }
}

.project-link {
    text-decoration: none; 
    color: inherit;        
    display: block;        
}

.service-link {
  margin-top: 20px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

.custom-check-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media(max-width: 600px) {
  .custom-check-list { grid-template-columns: 1fr; }
}

.custom-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d1d1d1;
  font-size: 0.95rem;
  background: rgba(0,0,0,0.3);
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.03);
  transition: border-color 0.3s;
}

.custom-check-list li:hover {
  border-color: rgba(251, 176, 59, 0.3);
}

.custom-check-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
}