/* ═══════════════════════════════════════════════════════
   RedoWorks — Global Stylesheet
   Ana Renk: #0f1729  |  Gri: #7b7b83  |  BG: #ffffff
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ── */
:root {
  --navy:        #0f1729;
  --navy-80:     rgba(15,23,41,0.8);
  --navy-light:  #1a2540;
  --accent:      #2a6ef5;
  --accent-2:    #3d86ff;
  --grey:        #7b7b83;
  --grey-light:  #b0b0b8;
  --bg:          #ffffff;
  --bg-soft:     #f7f8fa;
  --bg-subtle:   #f0f2f5;
  --border:      #e4e6ea;
  --border-dark: #d0d3d9;
  --text:        #0f1729;
  --text-2:      #3a3d47;
  --text-muted:  #7b7b83;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(15,23,41,.06), 0 1px 2px rgba(15,23,41,.04);
  --shadow-md:   0 4px 16px rgba(15,23,41,.08), 0 2px 6px rgba(15,23,41,.05);
  --shadow-lg:   0 12px 40px rgba(15,23,41,.10), 0 4px 12px rgba(15,23,41,.06);
  --font-main:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:   'DM Mono', 'Courier New', monospace;
  --transition:  0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); }
.display-xl { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.025em; }
.display-md { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
.body-lg { font-size: 1.125rem; line-height: 1.75; color: var(--text-2); }
.body-md { font-size: 1rem; line-height: 1.7; }
.label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-family: var(--font-mono); }
.mono { font-family: var(--font-mono); }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  transition: all var(--transition);
  cursor: pointer; white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
}
.btn-primary:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 2px solid var(--border-dark);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-accent:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(42,110,245,.35); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-arrow::after { content: '→'; margin-left: 4px; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }
.btn-wa { background: #25d366; color: #fff; border: 2px solid #25d366; }
.btn-wa:hover { background: #1fb855; border-color: #1fb855; transform: translateY(-1px); }
.w-full { width: 100%; justify-content: center; }

/* ── HEADER ── */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
  height: 68px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 34px; width: auto; }
.header-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.header-logo .logo-main { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); }
.header-logo .logo-main span { color: var(--grey); font-weight: 400; }
.header-logo .logo-sub { font-size: 0.6rem; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }

.header-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.header-nav > a, .nav-dropdown > a {
  padding: 6px 12px;
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  border-radius: 6px;
  transition: all var(--transition);
}
.header-nav > a:hover, .nav-dropdown > a:hover, .header-nav > a.active { background: var(--bg-soft); color: var(--navy); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: ''; width: 14px; height: 14px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237b7b83' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat; transition: transform var(--transition); }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 240px; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  transition: background var(--transition);
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
}
.dropdown-item:hover { background: var(--bg-soft); color: var(--navy); }
.dropdown-item-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.dropdown-item-label { font-weight: 600; color: var(--text); }
.dropdown-item-sub { font-size: 0.75rem; color: var(--text-muted); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 8px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: 6px; transition: background var(--transition); }
.hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s ease; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: #fff; padding: 24px; z-index: 99; overflow-y: auto;
  flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  padding: 14px 16px; border-radius: 8px; font-size: 1rem; font-weight: 500; color: var(--text-2);
  transition: background var(--transition);
}
.mobile-nav > a:hover { background: var(--bg-soft); color: var(--navy); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-sub { padding: 8px 0 8px 20px; display: flex; flex-direction: column; gap: 2px; }
.mobile-sub a { padding: 10px 14px; border-radius: 6px; font-size: 0.875rem; color: var(--text-muted); display: block; }
.mobile-sub a:hover { background: var(--bg-soft); color: var(--navy); }
.mobile-nav .btn { margin-top: 16px; }
.mobile-accordion-toggle { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-radius: 8px; font-size: 1rem; font-weight: 500; color: var(--text-2); cursor: pointer; transition: background var(--transition); }
.mobile-accordion-toggle:hover { background: var(--bg-soft); }
.mobile-accordion-toggle svg { transition: transform 0.3s; }
.mobile-accordion-toggle.open svg { transform: rotate(180deg); }
.mobile-sub { display: none; }
.mobile-sub.open { display: flex; }

/* ── HERO ── */
#hero {
  padding: 80px 0 90px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,110,245,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(15,23,41,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(15,23,41,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 100px; margin-bottom: 24px; }
.hero-badge-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(1.2)} }
.hero-badge span { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }
.hero-h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; color: var(--navy); }
.hero-h1 em { font-style: normal; color: var(--accent); }
.hero-services-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.hero-service-tag { padding: 5px 14px; background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.hero-service-dot { color: var(--grey-light); font-size: 1rem; }
.hero-sub { font-size: 1.05rem; line-height: 1.75; color: var(--text-2); margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-main {
  background: var(--navy); border-radius: var(--radius-lg); padding: 32px;
  color: #fff; position: relative; overflow: hidden;
}
.hero-card-main::before { content: ''; position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; background: rgba(42,110,245,.15); border-radius: 50%; pointer-events: none; }
.hero-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.hero-card-dots { display: flex; gap: 6px; }
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-dot:nth-child(1) { background: #ff5f56; }
.hero-card-dot:nth-child(2) { background: #febc2e; }
.hero-card-dot:nth-child(3) { background: #27c840; }
.hero-card-title { font-size: 0.75rem; font-family: var(--font-mono); color: rgba(255,255,255,.5); margin-left: 8px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.hero-stat { background: rgba(255,255,255,.07); border-radius: 10px; padding: 14px; }
.hero-stat-label { font-size: 0.7rem; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.hero-stat-value { font-size: 1.4rem; font-weight: 800; color: #fff; }
.hero-stat-badge { font-size: 0.65rem; color: #4ade80; margin-top: 2px; }
.hero-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-bottom: 20px; }
.hero-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(255,255,255,.15); transition: background var(--transition); }
.hero-bar.active { background: var(--accent); }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-tag { padding: 4px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; }
.hero-tag-blue { background: rgba(42,110,245,.25); color: #93b4ff; }
.hero-tag-green { background: rgba(74,222,128,.2); color: #6ee7b7; }

.hero-float-1, .hero-float-2 {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow-lg);
  min-width: 160px;
}
.hero-float-1 { bottom: -16px; left: -24px; }
.hero-float-2 { top: -16px; right: -24px; }
.float-label { font-size: 0.65rem; color: var(--text-muted); font-family: var(--font-mono); margin-bottom: 4px; }
.float-value { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.float-sub { font-size: 0.7rem; color: var(--grey); margin-top: 2px; }

/* ── TICKER ── */
#ticker { background: var(--navy); padding: 14px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.05); }
.ticker-track { display: flex; gap: 40px; animation: ticker 30s linear infinite; width: max-content; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.65); font-size: 0.8rem; font-weight: 500; white-space: nowrap; font-family: var(--font-mono); }
.ticker-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label { margin-bottom: 12px; }
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 560px; margin: 0 auto; color: var(--text-2); }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-subtle); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card-icon svg { width: 22px; height: 22px; color: var(--navy); }
.service-num { position: absolute; top: 24px; right: 28px; font-size: 0.7rem; font-family: var(--font-mono); color: var(--border-dark); font-weight: 600; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--navy); }
.service-card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-2); margin-bottom: 20px; }
.service-items { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.service-item { font-size: 0.72rem; font-weight: 500; padding: 3px 10px; background: var(--bg-subtle); border-radius: 100px; color: var(--text-2); }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.service-link::after { content: '→'; transition: transform var(--transition); }
.service-link:hover::after { transform: translateX(4px); }

/* ── HOW WE WORK ── */
.work-model { background: var(--bg-soft); }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step-card { text-align: center; padding: 28px 16px; position: relative; }
.step-card:not(:last-child)::after {
  content: ''; position: absolute; top: 44px; right: -16px; left: calc(50% + 28px);
  height: 1px; background: var(--border-dark);
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; font-family: var(--font-mono);
  margin: 0 auto 16px;
}
.step-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── CTA BLOCK ── */
.cta-block { background: var(--navy); border-radius: var(--radius-lg); padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-block::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: rgba(42,110,245,.15); border-radius: 50%; pointer-events: none; }
.cta-block::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 240px; height: 240px; background: rgba(255,255,255,.03); border-radius: 50%; pointer-events: none; }
.cta-block h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: #fff; color: var(--navy); border: 2px solid #fff; }
.btn-white:hover { background: var(--bg-soft); transform: translateY(-1px); }
.btn-ghost-white { background: transparent; color: rgba(255,255,255,.85); border: 2px solid rgba(255,255,255,.3); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: #fff; }

/* ── ABOUT SECTION ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-label { margin-bottom: 12px; }
.about-title { margin-bottom: 20px; }
.about-text { color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.about-stat-num { font-size: 2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.about-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.about-visual { position: relative; }
.about-card { background: var(--navy); border-radius: var(--radius-lg); padding: 36px; color: #fff; }
.about-card-title { font-size: 0.75rem; font-family: var(--font-mono); color: rgba(255,255,255,.5); margin-bottom: 20px; letter-spacing: 0.1em; text-transform: uppercase; }
.about-service-list { display: flex; flex-direction: column; gap: 12px; }
.about-service-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,.06); border-radius: 10px; font-size: 0.875rem; color: rgba(255,255,255,.85); }
.about-service-item::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── PROJECTS ── */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition); }
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.project-logo { margin-bottom: 20px; }
.project-logo img { height: 36px; }
.project-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.project-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.project-tag { font-size: 0.7rem; font-weight: 600; padding: 3px 10px; background: var(--bg-subtle); border-radius: 100px; color: var(--text-2); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-col .section-label { margin-bottom: 12px; }
.contact-info-col h2 { margin-bottom: 16px; }
.contact-info-col p { color: var(--text-2); line-height: 1.75; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color var(--transition); }
.contact-method:hover { border-color: var(--navy); }
.contact-method-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-icon svg { width: 18px; height: 18px; color: #fff; }
.contact-method strong { display: block; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-bottom: 2px; }
.contact-method a, .contact-method span { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* Form */
.form-wrap { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-wrap h3 { font-size: 1.1rem; margin-bottom: 6px; }
.form-wrap .form-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.req { color: var(--accent); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 0.875rem; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,23,41,.08); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-light); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { margin-top: 2px; flex-shrink: 0; accent-color: var(--navy); }
.form-check label { font-size: 0.82rem; color: var(--text-2); }
.form-check a { color: var(--accent); text-decoration: underline; }
.form-error { font-size: 0.75rem; color: #ef4444; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-honeypot { display: none; }
.form-success {
  display: none; text-align: center; padding: 40px 24px;
  background: var(--bg-soft); border-radius: var(--radius); border: 1px solid var(--border);
}
.form-success.show { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
.form-success p { font-size: 0.875rem; color: var(--text-muted); }

/* ── FOOTER ── */
#site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 72px 0 32px; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background var(--transition); color: rgba(255,255,255,.6); }
.footer-social a:hover { background: rgba(255,255,255,.16); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  background: var(--navy); color: rgba(255,255,255,.85);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  z-index: 999; box-shadow: var(--shadow-lg);
  max-width: 640px;
  transform: translateY(120%); transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.85rem; flex: 1; color: rgba(255,255,255,.75); }
#cookie-banner a { color: rgba(255,255,255,.9); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }

/* ── PAGE HERO ── */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 64px 0 56px; }
.page-hero .container { max-width: 760px; }
.page-hero .label { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.bg-soft { background: var(--bg-soft); }
.border-top { border-top: 1px solid var(--border); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── HIZMET DETAIL ── */
.hizmet-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.hizmet-sidebar { position: sticky; top: 84px; }
.hizmet-nav { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.hizmet-nav a { display: flex; align-items: center; gap: 10px; padding: 14px 18px; font-size: 0.875rem; font-weight: 500; color: var(--text-2); border-bottom: 1px solid var(--border); transition: all var(--transition); }
.hizmet-nav a:last-child { border-bottom: none; }
.hizmet-nav a:hover, .hizmet-nav a.active { background: var(--navy); color: #fff; }
.hizmet-content-area { /* content area for detail pages */ }
.hizmet-intro { margin-bottom: 48px; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 36px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; font-size: 0.875rem; }
.feature-item-check { width: 20px; height: 20px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.feature-item-check svg { width: 11px; height: 11px; color: #fff; }

/* ── PRICING TEASER ── */
.pricing-teaser { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.pricing-teaser h3 { font-size: 1.1rem; margin-bottom: 12px; }
.pricing-teaser p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.pricing-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-point { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-2); }
.pricing-point::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step-card:nth-child(3)::after, .step-card:nth-child(5)::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .header-nav { display: none; }
  .header-actions .btn:not(.hamburger) { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card::after { display: none !important; }
  .about-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-block { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-float-1, .hero-float-2 { display: none; }
  .hizmet-grid { grid-template-columns: 1fr; }
  .hizmet-sidebar { position: static; }
  .feature-list { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ── WhatsApp Float Button (Global) ── */
.wp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
  animation: wpPulse 2.5s ease-in-out infinite;
  font-family: var(--font-main);
}
.wp-float-btn:hover {
  background: #20b858;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  color: #fff;
}
@keyframes wpPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
}

/* ── Project thumb improvements ── */
.project-thumb {
  position: relative;
  overflow: hidden;
}
.project-thumb img {
  transition: transform .3s ease;
}
.project-card:hover .project-thumb img {
  transform: scale(1.04);
}

/* ── Badge own product ── */
.badge-own {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(42,110,245,.12);
  color: #2a6ef5;
  border: 1px solid rgba(42,110,245,.25);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── Responsive: WP button mobile ── */
@media (max-width: 480px) {
  .wp-float-btn span { display: none; }
  .wp-float-btn { padding: 14px; border-radius: 50%; bottom: 20px; right: 16px; }
  /* projects-teaser-grid mobile: handled by references-grid responsive styles */
}

/* ── Header logo size boost ── */
.header-logo img {
  height: 44px !important;
  width: auto;
  max-width: 180px;
  display: block;
}

/* ── Project thumb cover fill ── */
.project-thumb {
  display: block !important;
}
.project-thumb img {
  width: 100% !important;
  height: 100% !important;
}

/* ═══════════════════════════════════════════════════════
   REFERANSLAR — Premium References Section
   ═══════════════════════════════════════════════════════ */

.references-section {
  padding: 96px 0;
  background: var(--bg-soft);
}

.references-header {
  text-align: center;
  margin-bottom: 16px;
}

.references-header .label {
  margin-bottom: 12px;
}

.references-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 12px;
}

.references-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 52px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.reference-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 23, 41, 0.10), 0 4px 12px rgba(15, 23, 41, 0.06);
  border-color: rgba(15, 23, 41, 0.12);
}

.reference-logo-wrap {
  width: 100%;
  aspect-ratio: 16 / 5.2;
  border-radius: 12px;
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 23, 41, 0.08);
  background: #eef1f6;
}

.reference-thumb.thumb-markaskor {
  background: linear-gradient(135deg,#e8f0ff 0%,#c8d9ff 100%);
}

.reference-thumb.thumb-bustop {
  background: linear-gradient(135deg,#1a237e 0%,#283593 100%);
}

.reference-thumb.thumb-mesut {
  background: linear-gradient(135deg,#f5f5f5 0%,#e8e8e8 100%);
}

.reference-thumb.thumb-gold {
  background: linear-gradient(135deg,#1a1000 0%,#2a1f00 100%);
}

.reference-thumb.thumb-kolay {
  background: linear-gradient(135deg,#fff8f8 0%,#ffe8e8 100%);
}

.reference-thumb.thumb-cemre {
  background: linear-gradient(135deg,#f0f0e8 0%,#e0dfd4 100%);
}

.reference-logo {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform .3s ease;
}

.reference-card:hover .reference-logo {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform .3s ease;
}

.reference-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.reference-name {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.reference-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.reference-badge.badge-product {
  background: rgba(42, 110, 245, 0.10);
  color: #2a6ef5;
  border: 1px solid rgba(42, 110, 245, 0.22);
}

.reference-badge.badge-client {
  background: rgba(15, 23, 41, 0.05);
  color: var(--text-muted);
  border: 1px solid rgba(15, 23, 41, 0.08);
}

.reference-service {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-family: var(--font-mono);
  margin-bottom: 8px;
}

.reference-note {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.68;
}

/* Responsive */
@media (max-width: 1024px) {
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .references-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reference-card {
    padding: 20px;
  }
  .reference-logo-wrap {
  width: 100%;
  aspect-ratio: 16 / 5.2;
  border-radius: 12px;
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 23, 41, 0.08);
  background: #eef1f6;
}
}

/* ═══════════════════════════════════════════════════════
   MOBILE — projects-teaser-grid override
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .projects-teaser-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* ── btn-mt utility ── */
.btn-mt { margin-top: 24px; }

/* ── Responsive: header logo image fix (ensure no !important conflict) ── */
@media (max-width: 480px) {
  .header-logo img {
    height: 36px !important;
    max-width: 150px;
  }
}

/* ── Hero bars: remove inline height for cleaner HTML (keep existing, add aria) ── */

/* ── Hizmetler subpage responsive fix ── */
@media (max-width: 768px) {
  .hizmet-cat-inner {
    grid-template-columns: 1fr !important;
  }
}

/* ── Final mobile/header/reference fixes ── */
@media (max-width: 768px) {
  .header-inner {
    gap: 0;
    justify-content: space-between;
    padding: 0 18px;
  }
  .header-logo {
    margin-right: auto;
    min-width: 0;
  }
  .header-actions {
    margin-left: auto;
    flex-shrink: 0;
  }
  .hamburger {
    margin-left: 0 !important;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .references-section {
    padding: 58px 0 64px;
  }
  .references-header {
    margin-bottom: 24px;
  }
  .references-header h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.15rem);
    line-height: 1.12;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .references-subtitle {
    max-width: 300px;
    margin-inline: auto;
    font-size: .82rem;
    line-height: 1.55;
  }
  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 30px;
  }
  .reference-card {
    padding: 12px;
    border-radius: 15px;
  }
  .reference-logo-wrap {
    aspect-ratio: 16 / 7;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .reference-meta {
    display: block;
    margin-bottom: 4px;
  }
  .reference-name {
    display: block;
    font-size: .86rem;
    line-height: 1.15;
    margin-bottom: 5px;
  }
  .reference-badge {
    font-size: .52rem;
    padding: 2px 7px;
  }
  .reference-service {
    font-size: .56rem;
    letter-spacing: .08em;
    margin-bottom: 0;
  }
  .reference-note {
    display: none;
  }
}

@media (max-width: 374px) {
  .references-grid {
    grid-template-columns: 1fr;
  }
  .reference-card {
    padding: 14px;
  }
  .reference-note {
    display: block;
    font-size: .78rem;
  }
}

/* ── Reference logos final white surface override ── */
.reference-logo-wrap,
.reference-thumb,
.reference-thumb.thumb-markaskor,
.reference-thumb.thumb-bustop,
.reference-thumb.thumb-mesut,
.reference-thumb.thumb-gold,
.reference-thumb.thumb-kolay,
.reference-thumb.thumb-cemre {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 41, 0.10) !important;
}
.reference-logo {
  object-fit: contain !important;
  object-position: center !important;
  image-rendering: auto;
  filter: none;
}
@media (max-width: 640px) {
  .reference-logo-wrap {
    background: #ffffff !important;
  }
}

/* ── Projects page mobile overflow safety ── */
.projects-grid, .project-card, .project-body, .project-thumb, .project-tags, .projects-filter-row { min-width: 0; }
.project-card p, .project-card h3 { overflow-wrap: anywhere; }

/* ── Final project thumb logo fit fix ── */
.project-thumb { background:#fff; }
.project-thumb img { width:100%; height:100%; object-fit:contain; object-position:center; }
