/* ============================================
   CipSoft — PREMIUM KURUMSAL WEB SİTESİ CSS
   ============================================ */

/* --- 1. RESET & TOKENS --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #4f46e5;
  --primary-light: #818cf8;
  --primary-dark: #3730a3;
  --primary-50: #eef2ff;
  --primary-100: #e0e7ff;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --navy-950: #020617;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, .navbar__logo, .hero__title, .section-badge, .card__title, .detail-hero__title {
  font-family: var(--font-heading);
}

/* --- 2. UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 28px; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: all var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,0.35); }
.btn--outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--ghost { background: rgba(79,70,229,0.08); color: var(--primary); }
.btn--ghost:hover { background: rgba(79,70,229,0.15); }
.btn--white { background: #fff; color: var(--navy-900); }
.btn--white:hover { background: var(--slate-50); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary);
  background: var(--primary-50); border: 1px solid var(--primary-100);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: var(--navy-900); letter-spacing: -0.5px; }
.section-desc { font-size: 1.05rem; color: var(--slate-600); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* --- 3. NAVBAR --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all var(--transition);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.navbar__logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-mark { color: var(--primary); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 1.3rem; font-weight: 800; color: var(--navy-900); letter-spacing: -0.5px; }
.logo-text small { font-size: 0.58rem; color: var(--slate-500); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.navbar__links { display: flex; gap: 8px; }
.navbar__links a {
  color: var(--slate-600); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; transition: color var(--transition);
  padding: 8px 14px; border-radius: var(--radius-sm);
}
.navbar__links a:hover { color: var(--primary); background: var(--primary-50); }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.navbar__hamburger span { display: block; width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: all var(--transition); }

/* MEGA MENU */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px); width: 520px;
  background: var(--white); backdrop-filter: blur(20px);
  border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-xl);
}
.has-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-item {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px;
  border-radius: var(--radius-sm); text-decoration: none; transition: all 0.2s;
}
.mega-item:hover { background: var(--slate-50); }
.mega-item:hover .mega-text strong { color: var(--primary); }
.mega-icon { font-size: 1.3rem; background: var(--primary-50); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; flex-shrink: 0; }
.mega-text strong { display: block; color: var(--navy-900); font-size: 0.88rem; font-weight: 600; margin-bottom: 1px; transition: color 0.2s; }
.mega-text span { display: block; color: var(--slate-500); font-size: 0.78rem; line-height: 1.4; }

/* --- 4. HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 40%, var(--primary-50) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg-shapes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__bg-shapes::before {
  content: '';
  position: absolute; top: -30%; right: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,70,229,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__bg-shapes::after {
  content: '';
  position: absolute; bottom: -20%; left: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__bg-gradient { display: none; }
.hero__container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero__content-center { max-width: 600px; text-align: left; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: var(--primary-50); border: 1px solid var(--primary-100);
  font-size: 0.78rem; font-weight: 600; color: var(--primary);
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); animation: pulse-dot 2s infinite;
}
.hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px;
  color: var(--navy-900);
}
.hero__subtitle {
  font-size: 1.1rem; color: var(--slate-600); font-weight: 400;
  line-height: 1.7; margin-bottom: 36px; max-width: 500px;
}
.hero__actions { display: flex; gap: 12px; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 40px; }
.hero__stat { text-align: left; }
.hero__stat-value { font-size: 1.8rem; font-weight: 800; color: var(--navy-900); line-height: 1; }
.hero__stat-label { font-size: 0.78rem; color: var(--slate-500); margin-top: 4px; font-weight: 500; }

/* Hero Visual */
.hero__visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero__visual-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-xl);
  width: 100%; max-width: 480px;
  position: relative; z-index: 2;
}
.hero__visual-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.hero__visual-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero__visual-bar {
  height: 8px; border-radius: 4px; margin-bottom: 12px;
}
.hero__visual-bars { display: flex; flex-direction: column; gap: 10px; }
.hero__visual-row { display: flex; gap: 12px; align-items: center; }
.hero__visual-metric {
  flex: 1; padding: 16px; border-radius: var(--radius);
  border: 1px solid var(--slate-200); text-align: center;
}
.hero__visual-metric span { display: block; font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.hero__visual-metric small { font-size: 0.72rem; color: var(--slate-500); }
.hero__float-badge {
  position: absolute; padding: 10px 18px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg); font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px; z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.hero__float-badge--top { top: -10px; right: -20px; color: #16a34a; }
.hero__float-badge--bottom { bottom: 20px; left: -30px; color: var(--primary); }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.5); }
}

/* --- 5. SECTORS --- */
.sectors-overlap {
  position: relative; background: var(--white);
  padding: 140px 0 100px 0;
}
.sectors-overlap__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.overlap-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.overlap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.overlap-card__image-wrap { width: 100%; height: 200px; overflow: hidden; }
.overlap-card__image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.overlap-card:hover .overlap-card__image-wrap img { transform: scale(1.06); }
.overlap-card__body {
  padding: 28px; flex: 1; display: flex; flex-direction: column;
}
.overlap-card__title {
  font-size: 1.15rem; font-weight: 700; color: var(--navy-900);
  margin-bottom: 12px; line-height: 1.3;
}
.overlap-card__desc {
  font-size: 0.88rem; color: var(--slate-600); line-height: 1.65;
  margin-bottom: 24px; flex: 1;
}
.overlap-card__btn { align-self: flex-start; }



/* --- 6. PRODUCTS --- */
.products { padding: 100px 0; background: var(--slate-50); }
.products__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.product-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity var(--transition);
}
.product-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-item:hover::before { opacity: 1; }
.product-item__icon {
  width: 52px; height: 52px;
  background: var(--primary-50); border: 1px solid var(--primary-100);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.product-item__icon svg { width: 26px; height: 26px; color: var(--primary); }
.product-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--navy-900); }
.product-item p { font-size: 0.88rem; color: var(--slate-600); line-height: 1.7; }

/* --- 7. REFERENCES --- */
.references { padding: 100px 0; background: var(--white); }
.references__slider-wrap { overflow: hidden; margin-bottom: 0; position: relative; }
.references__slider-wrap::before,
.references__slider-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:100px; z-index:2; pointer-events:none;
}
.references__slider-wrap::before { left:0; background: linear-gradient(90deg, var(--white), transparent); }
.references__slider-wrap::after  { right:0; background: linear-gradient(-90deg, var(--white), transparent); }
.references__track {
  display: flex; gap: 20px; width: max-content;
  animation: marquee 30s linear infinite;
}
.references__track--reverse {
  animation: marquee-reverse 35s linear infinite;
}
@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.ref-logo {
  background: var(--slate-50); border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 14px 24px; display: flex; align-items: center; justify-content: center;
  min-width: 160px; transition: all var(--transition);
}
.ref-logo:hover { border-color: var(--primary-100); background: var(--primary-50); transform: translateY(-2px); }
.ref-logo span { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; color: var(--slate-500); white-space: nowrap; }
/* Badge color variants */
.ref-logo--cert { border-color: rgba(16,185,129,0.2); background: rgba(16,185,129,0.04); }
.ref-logo--cert span { color: #059669; }
.ref-logo--cert:hover { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); }
.ref-logo--tech { border-color: rgba(59,130,246,0.2); background: rgba(59,130,246,0.04); }
.ref-logo--tech span { color: #2563eb; }
.ref-logo--tech:hover { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); }
.ref-logo--sector { border-color: rgba(124,58,237,0.15); background: rgba(124,58,237,0.04); }
.ref-logo--sector span { color: #7c3aed; }
.ref-logo--sector:hover { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.25); }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card__quote {
  font-size: 0.92rem; color: var(--slate-700); line-height: 1.75;
  font-style: italic; margin-bottom: 24px;
}
.testimonial-card__quote::before { content: '\201C'; color: var(--primary); font-size: 2.5rem; line-height: 0; vertical-align: -0.5em; margin-right: 4px; font-style: normal; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; color: var(--primary);
}
.testimonial-card__author strong { display: block; font-size: 0.88rem; color: var(--navy-900); }
.testimonial-card__author span { font-size: 0.78rem; color: var(--slate-500); }

/* --- 8. CONTACT --- */
.contact { padding: 100px 0; background: var(--slate-50); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact__info .section-label { display: inline-block; margin-bottom: 16px; }
.contact__info .section-title { text-align: left; font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 16px; }
.contact__info > p { color: var(--slate-600); font-size: 0.95rem; line-height: 1.75; margin-bottom: 32px; }
.contact__details { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact__details li { display: flex; align-items: center; gap: 14px; font-size: 0.92rem; color: var(--slate-700); }
.contact__details svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); }
.contact__form {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--white); padding: 36px; border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--slate-700); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white); border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm); padding: 11px 14px;
  color: var(--navy-900); font-family: var(--font); font-size: 0.88rem;
  outline: none; transition: all var(--transition); resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--white); }
.form-note { font-size: 0.75rem; color: var(--slate-400); }

/* --- 9. FOOTER --- */
.footer { background: var(--navy-900); border-top: none; padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 64px; margin-bottom: 48px; }
.footer__brand .navbar__logo { margin-bottom: 16px; display: inline-flex; }
.footer .logo-mark { color: var(--primary-light); }
.footer .logo-text strong { color: #fff; }
.footer__brand p { font-size: 0.85rem; color: var(--slate-400); line-height: 1.7; max-width: 280px; }
.footer__links { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer__col h5 { font-size: 0.8rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer__col a { display: block; font-size: 0.85rem; color: var(--slate-400); text-decoration: none; margin-bottom: 10px; transition: color var(--transition); }
.footer__col a:hover { color: var(--primary-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.78rem; color: var(--slate-500); }

/* --- 10. ANIMATIONS --- */
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* --- 11. RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 48px; }
  .hero__content-center { max-width: 100%; text-align: center; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { max-width: 500px; margin: 0 auto; }
  .sectors-overlap__grid, .products__grid, .testimonials { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 60px; left: 0; right: 0; background: rgba(255,255,255,0.98);
    padding: 24px; gap: 8px; border-bottom: 1px solid var(--slate-200);
    backdrop-filter: blur(20px); box-shadow: var(--shadow-lg);
    z-index: 999; max-height: calc(100vh - 60px); overflow-y: auto;
  }
  .mega-menu { position: static; width: 100%; visibility: visible; opacity: 1; transform: none; box-shadow: none; border: none; padding: 8px 0 0 12px; background: transparent; grid-template-columns: 1fr; }
  .navbar__hamburger { display: flex; }
  .navbar__inner { padding: 0 16px; }
  .logo-img { height: 40px !important; }
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: 0.9rem; }
  .hero__title { font-size: 2rem; line-height: 1.2; }
  .hero__subtitle { font-size: 0.95rem; }
  .sectors-overlap__grid, .products__grid, .testimonials { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__float-badge { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { grid-template-columns: repeat(2,1fr); }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
  .product-item { padding: 20px; }
  .product-item h4 { font-size: 1rem; }
  .product-item p { font-size: 0.85rem; }
  .testimonial-card { padding: 20px; }
  .testimonial-card__quote { font-size: 0.9rem; }
  .stat-counter-bar { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; margin-bottom: 32px !important; }
  .stat-counter-bar > div { padding: 20px 12px !important; }
  .stat-counter-bar > div > div:first-child { font-size: 1.8rem !important; }
  .highlight-banner { grid-template-columns: 1fr !important; padding: 24px 20px !important; gap: 20px !important; }
  .highlight-banner h3 { font-size: 1.05rem !important; }
  .highlight-banner p { font-size: 0.8rem !important; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .footer__links { grid-template-columns: 1fr; }
  .hero__title { font-size: 1.6rem; }
  .section-title { font-size: 1.3rem; }
  .section-header { padding: 0 8px; }
  .logo-img { height: 36px !important; }
  .navbar { padding: 8px 0; }
  .contact { padding: 48px 0; }
  .contact__info h2 { font-size: 1.3rem; }
  .product-item { padding: 16px; }
  .ref-logo { min-width: 140px; padding: 12px 18px; }
  .ref-logo span { font-size: 0.72rem; }
  .author-avatar { width: 36px; height: 36px; font-size: 0.75rem; }
  .stat-counter-bar { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .stat-counter-bar > div { padding: 16px 10px !important; }
  .stat-counter-bar > div > div:first-child { font-size: 1.5rem !important; }
  .stat-counter-bar > div > div:last-child { font-size: 0.72rem !important; }
  .highlight-banner { padding: 20px 16px !important; border-radius: 14px !important; }
  .contact__form { padding: 16px; border-radius: 12px; }
  .contact__form select, .contact__form input, .contact__form textarea { font-size: 16px; }
}
