:root {
  --unico-blue: #0073bb;
  --unico-orange: #f15a24;
  --hd-red: #c41e3a;
  --hd-dark: #4d4d4d;
  --bg: #f7f8fa;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #5c6570;
  --border: #e2e6eb;
  --shadow: 0 12px 40px rgba(0, 40, 80, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17.6px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--unico-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.header-left {
  justify-self: start;
}

.header-center {
  justify-self: center;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  color: var(--hd-dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.header-right {
  justify-self: end;
}

.logo-block {
  display: flex;
  align-items: center;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* UNI + ust mavi nokta + CO (screenshot.66) */
.logo-unico {
  margin: 0;
  padding: 0;
  font-weight: 900;
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
}

.logo-unico .uni {
  color: var(--unico-blue);
}

.logo-unico .uni::after {
  content: "";
  display: inline-block;
  width: 0.48em;
  height: 0.48em;
  min-width: 11px;
  min-height: 11px;
  margin: 0 0.12em 0 0.06em;
  background-color: var(--unico-blue);
  border-radius: 50%;
  vertical-align: top;
  position: relative;
  top: 0.02em;
}

.logo-unico .co {
  color: var(--unico-orange);
}

.logo-sub {
  margin: 0.35rem 0 0;
  padding: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--unico-blue);
  text-transform: uppercase;
  line-height: 1.2;
}

.badge-soon {
  background: linear-gradient(135deg, var(--unico-blue), #004d8c);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Hero */
.hero {
  padding: 2.5rem 0 2.5rem;
  text-align: center;
}

.hero-visual {
  max-width: 260px;
  margin: 0 auto 1.5rem;
}

.hero-illustration {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--hd-dark);
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--hd-red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero .intro {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--muted);
}

.notice {
  display: inline-block;
  background: #fff8e6;
  border: 1px solid #f0d78c;
  color: #7a5c00;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Sections */
section {
  padding: 2.5rem 0;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
  color: var(--hd-dark);
}

.section-desc {
  text-align: center;
  color: var(--muted);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--unico-blue);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.service-card.extra {
  border-top: 3px solid var(--unico-orange);
}

/* Contact */
.contact-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

/* Brands */
.brands {
  text-align: center;
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.brands span {
  color: var(--unico-blue);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--hd-dark);
  color: #e8eaed;
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer a {
  color: #9ec5e8;
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.5rem;
    text-align: center;
  }

  .header-left,
  .header-center,
  .header-right {
    justify-self: center;
  }

  .logo-wordmark {
    align-items: center;
  }

  .header-center {
    white-space: normal;
  }
}
