:root {
  --ink: #0f172a;
  --ink-soft: #47536b;
  --line: #e4e7ee;
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --accent: #2952e3;
  --accent-ink: #ffffff;
  --radius: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.sw-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; }

/* Header */
.sw-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.sw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.sw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  color: var(--ink);
}
.sw-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #2952e3, #7c3aed);
  flex-shrink: 0;
}
.sw-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.sw-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.sw-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14.5px;
}
.sw-nav a:hover { color: var(--ink); }
.sw-nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

/* Hero */
.sw-hero {
  padding: 76px 0 60px;
  text-align: center;
  background:
    radial-gradient(680px 320px at 50% -80px, rgba(41, 82, 227, 0.08), transparent 70%),
    var(--bg);
}
.sw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.sw-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 auto 20px;
  max-width: 780px;
  font-weight: 800;
}
.sw-hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 34px;
  line-height: 1.6;
}
.sw-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.sw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.sw-btn-primary {
  background: var(--ink);
  color: #fff;
}
.sw-btn-primary:hover { background: #1f2a44; }
.sw-btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.sw-btn-secondary:hover { border-color: #c7cede; }

.sw-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.sw-stat {
  text-align: center;
}
.sw-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
}
.sw-stat span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Section headings */
.sw-section {
  padding: 72px 0;
}
.sw-section-alt { background: var(--bg-alt); }
.sw-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.sw-section-head .sw-kicker {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.sw-section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.sw-section-head p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Gallery */
.sw-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) {
  .sw-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .sw-gallery { grid-template-columns: 1fr; }
}

.sw-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.22);
  border-color: #d7dcea;
}
.sw-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.sw-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.sw-card:hover .sw-card-media img { transform: scale(1.04); }
.sw-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.sw-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sw-card-body h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}
.sw-card-style {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
.sw-card-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.sw-card-features {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sw-card-features li {
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sw-card-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}
.sw-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 18px;
  border-radius: 10px;
  text-align: center;
}
.sw-card:hover .sw-card-cta { background: var(--accent); }

/* Steps */
.sw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 780px) {
  .sw-steps { grid-template-columns: 1fr; }
}
.sw-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.sw-step-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}
.sw-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}
.sw-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

.sw-cta-row {
  margin-top: 40px;
  text-align: center;
}

/* Contact / Bize Ulaşın */
.sw-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sw-contact-text { max-width: 520px; }
.sw-contact-text h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.sw-contact-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.sw-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
.sw-btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.sw-btn-whatsapp:hover { background: #1fb958; }
.sw-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
}
.sw-contact-phone:hover { color: var(--accent); }

@media (max-width: 640px) {
  .sw-contact-card { padding: 32px 24px; flex-direction: column; align-items: stretch; text-align: center; }
  .sw-contact-actions { align-items: center; width: 100%; }
  .sw-btn-whatsapp { width: 100%; justify-content: center; }
}

/* Footer */
.sw-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: var(--bg-alt);
}
.sw-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sw-footer-brand h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}
.sw-footer-brand p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.55;
}
.sw-footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.sw-footer-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}
.sw-footer-links a:hover { color: var(--ink); }
.sw-footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 640px) {
  .sw-nav-links { display: none; }
  .sw-hero { padding: 52px 0 44px; }
  .sw-section { padding: 52px 0; }
}
