:root {
  --bg: #f8fafc;
  --bg-light: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.9);
  --primary: #0284c7;
  --accent: #f97316;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 35px rgba(15, 23, 42, 0.12);
  --shadow-hard: 0 28px 55px rgba(15, 23, 42, 0.18);
  --gradient: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(13, 148, 136, 0.12));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(14, 165, 233, 0.12), transparent 55%), var(--bg);
  color: var(--text);
  overscroll-behavior: none;
}

body.disable-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='960' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' stop-color='%23dbeafe'/%3E%3Cstop offset='100%25' stop-color='%23f8fafc' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd' opacity='0.35'%3E%3Ccircle fill='url(%23g)' cx='200' cy='160' r='240'/%3E%3Ccircle fill='url(%23g)' cx='1240' cy='720' r='320'/%3E%3C/g%3E%3C/svg%3E");
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}

.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--muted);
}

.nav-backdrop {
  display: none;
}

.breadcrumb {
  padding: 28px 0 0;
}

.breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.breadcrumb__link:hover {
  color: var(--primary);
  transform: translateX(-4px);
}

.nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--primary);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.cta-button {
  padding: 12px 22px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #0f172a;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  padding: 140px 0 120px;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.35), rgba(248, 250, 252, 0.95));
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(2, 132, 199, 0.22), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(249, 115, 22, 0.15), transparent 55%);
  opacity: 0.8;
  filter: blur(16px);
  z-index: -3;
}

.hero__bg-shape {
  position: absolute;
  inset-inline: 10%;
  top: 15%;
  height: 70%;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.18), transparent 70%);
  border-radius: var(--radius-lg);
  z-index: -2;
}

.hero__content {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero__text h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.8rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__text strong {
  display: block;
  color: var(--primary);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.12);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero__text p {
  color: rgba(15, 23, 42, 0.72);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__actions .primary {
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), #2dd4bf);
  color: #0f172a;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__actions .primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
}

.hero__actions .secondary {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.92);
  transition: border 0.2s ease, transform 0.2s ease;
}

.hero__actions .secondary:hover {
  border-color: rgba(2, 132, 199, 0.45);
  transform: translateY(-2px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.hero__stats div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform 0.3s ease;
}

.hero__stats div:hover {
  transform: translateY(-6px);
}

.hero__stats .count {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.hero__visual {
  position: relative;
  display: grid;
  gap: 22px;
}

.hero__visual .card {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(2, 132, 199, 0.12);
  box-shadow: var(--shadow-soft);
  animation: float 10s ease-in-out infinite;
}

.hero__visual .card:nth-child(2) {
  animation-delay: -3s;
}

.hero__visual .card:nth-child(3) {
  animation-delay: -6s;
}

.hero__visual h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--text);
}

.hero__visual p {
  margin: 0;
  color: rgba(15, 23, 42, 0.65);
}

.hero--subpage {
  padding-block: 140px 90px;
}

.hero__visual--portfolio {
  display: grid;
  gap: 18px;
}

.hero__visual--portfolio .card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 165, 233, 0.18);
}

.services {
  padding: 110px 0 80px;
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw + 0.5rem, 2.6rem);
  margin-bottom: 16px;
}

.section-heading p {
  color: rgba(15, 23, 42, 0.65);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.12);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.eyebrow--link {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eyebrow--link:hover,
.eyebrow--link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.15);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.35s ease, border 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18), transparent 60%);
  transition: transform 0.35s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(2, 132, 199, 0.35);
}

.service-card:hover::after {
  transform: translate(40px, -30px);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: rgba(15, 23, 42, 0.65);
  line-height: 1.6;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.28), rgba(13, 148, 136, 0.28));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.service-brand-list .brand-pill {
  min-width: 160px;
}

.icon::before {
  content: "";
  width: 28px;
  height: 28px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
  background: #e0f2fe;
}

.icon.dish::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M7 2v20H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h2Zm10 0v20h2a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3h-2Zm-2 0H9v20h6V2Z'/%3E%3C/svg%3E");
}

.icon.washer::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M22 2a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.1.9-2 2-2h16Zm0 7H6v15h16V9Zm-8 2.5A5.5 5.5 0 1 1 8.5 17 5.5 5.5 0 0 1 14 11.5ZM11 5H7v2h4V5Zm4 0h-2v2h2V5Zm4 0h-2v2h2V5Z'/%3E%3C/svg%3E");
}

.icon.fridge::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M19 2a3 3 0 0 1 3 3v18a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h10Zm0 11H9v10a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V13Zm-7 3v4h-2v-4h2Zm7-11H9v6h10V5Zm-5 3v2h-2V8h2Zm3-3v2h-2V5h2Z'/%3E%3C/svg%3E");
}

.icon.ac::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M24 6a2 2 0 0 1 2 2v4h-6l-4.553 4.553A2 2 0 0 1 13.029 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h20ZM8 20h2a2 2 0 1 1-2 2H6a3.996 3.996 0 0 0 3.874 3.996L10 26h-2a2 2 0 1 1 2-2H8a2 2 0 0 1 0-4Zm6 0h2a2 2 0 1 1-2 2h-2a3.996 3.996 0 0 0 3.874 3.996L18 26h-2a2 2 0 1 1 2-2h-2a2 2 0 0 1 0-4Z'/%3E%3C/svg%3E");
}

.icon.oven::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M23 3a3 3 0 0 1 3 3v18a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a3 3 0 0 1 3-3h18Zm-5 11H10a3 3 0 0 0-3 3v7h14v-7a3 3 0 0 0-3-3Zm1-7h-2v2h2V7Zm-4 0h-2v2h2V7Zm-4 0h-2v2h2V7Z'/%3E%3C/svg%3E");
}

.icon.tv::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M24 5a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2h-6.586l2.293 2.293-1.414 1.414L14 20.414l-4.293 4.293-1.414-1.414L10.586 20H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h20Zm0 2H4v11h20V7Z'/%3E%3C/svg%3E");
}

.brands {
  position: relative;
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.9);
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(2, 132, 199, 0.18);
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 0;
}

.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.brand-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0));
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0));
}

.brand-marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.brand-marquee:hover .brand-marquee__inner {
  animation-play-state: paused;
}

.brand-marquee__group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: none;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.14), rgba(13, 148, 136, 0.1));
  border: 1px solid rgba(2, 132, 199, 0.24);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  color: var(--text);
  min-width: 180px;
  justify-content: center;
  text-align: center;
  flex: none;
}

.brand-pill__logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.15);
}

.brand-pill__logo img {
  max-width: 30px;
  max-height: 24px;
  object-fit: contain;
  display: block;
}

.brand-pill span {
  font-weight: 600;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.brand-pill:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 132, 199, 0.5);
  box-shadow: 0 26px 40px rgba(15, 23, 42, 0.15);
}

.portfolio-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hard);
}

.portfolio-card header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio-card h3 {
  font-size: 1.15rem;
  color: var(--text);
}

.portfolio-card p {
  color: var(--muted);
  line-height: 1.6;
}

.portfolio-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.portfolio-card .badge {
  align-self: flex-start;
  background: rgba(2, 132, 199, 0.12);
  color: var(--primary);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.portfolio-cta {
  padding: 90px 0;
  background: linear-gradient(120deg, rgba(2, 132, 199, 0.12), rgba(13, 148, 136, 0.12));
}

.portfolio-cta__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__content h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.portfolio-cta__content p {
  color: var(--muted);
  margin-bottom: 28px;
}

.portfolio-cta__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.kvkk-list {
  margin: 0 0 24px;
  padding-left: 22px;
  color: rgba(15, 23, 42, 0.68);
  display: grid;
  gap: 10px;
  list-style: disc;
}

.advantages {
  padding: 110px 0 90px;
}

.advantage-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.advantage-grid article {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.advantage-grid article::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 65%);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.advantage-grid article:hover {
  transform: translateY(-10px);
}

.advantage-grid article:hover::before {
  opacity: 1;
  transform: translate3d(-30px, -30px, 0);
}

.advantage-grid h3 {
  color: var(--text);
  margin-bottom: 12px;
}

.advantage-grid p {
  color: rgba(15, 23, 42, 0.65);
  line-height: 1.6;
}

.cta-ribbon {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.22), rgba(14, 165, 233, 0.28));
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-ribbon::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -160px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 60%);
  animation: pulse 6s ease-in-out infinite;
}

.cta-ribbon h2 {
  font-size: clamp(2rem, 2.8vw + 1rem, 2.5rem);
  margin-bottom: 12px;
  color: #0f172a;
}

.cta-ribbon p {
  color: rgba(15, 23, 42, 0.8);
  margin-bottom: 24px;
}

.cta-ribbon__actions {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.1);
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(14, 165, 233, 0.35);
}

.cta-light--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.28);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.2);
}

.cta-light--outline:hover {
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.35), 0 20px 35px rgba(14, 165, 233, 0.25);
}

.testimonials {
  padding: 110px 0 90px;
}

.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-grid article {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.testimonial-grid article::before {
  content: "";
  position: absolute;
  inset: auto -80px -60px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.testimonial-grid article:hover::before {
  opacity: 1;
}

.testimonial-grid p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.75);
}

.testimonial-grid span {
  display: block;
  margin-top: 16px;
  color: rgba(71, 85, 105, 0.88);
}

.contact {
  padding: 110px 0 120px;
  background: rgba(241, 245, 249, 0.9);
  border-top: 1px solid var(--border);
}

.contact__inner {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact__info p {
  color: rgba(15, 23, 42, 0.7);
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
  color: var(--text);
}

.contact__list a {
  color: var(--primary);
  font-weight: 600;
}

.contact__channels {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.channel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(2, 132, 199, 0.18);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border 0.25s ease;
}

.channel span {
  color: rgba(71, 85, 105, 0.85);
  font-weight: 500;
}

.channel strong {
  font-size: 1.15rem;
  color: var(--text);
}

.channel:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 132, 199, 0.45);
}

.channel--whatsapp {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.28);
}

.channel--whatsapp strong {
  color: #166534;
}

.service-areas {
  margin-top: 24px;
  color: rgba(15, 23, 42, 0.65);
  line-height: 1.6;
}

.footer {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 40px;
  color: #e2e8f0;
}

.footer__inner {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer__brand p {
  color: rgba(226, 232, 240, 0.7);
  max-width: 320px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
}

.footer__links h4 {
  margin-bottom: 14px;
  color: #f8fafc;
}

.footer__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(226, 232, 240, 0.7);
}

.footer__links a:hover {
  color: #38bdf8;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
  color: rgba(226, 232, 240, 0.7);
}

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1400;
}

.whatsapp-float__icon {
  width: 28px;
  height: 28px;
  background: #0f172a;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M12 2a10 10 0 0 0-8.94 14.59l-1.05 3.84 3.93-1.03A10 10 0 1 0 12 2Zm0 2a8 8 0 0 1 6.59 12.59l-.2.3a1 1 0 0 0-.12.72l.5 1.84-1.9-.5a1 1 0 0 0-.84.16l-.32.22A8 8 0 1 1 12 4Zm-3.24 4.74c-.18-.01-.38 0-.6.05-.4.1-.76.63-.76 1.08 0 .64.17 1.25.5 1.82.54.92 1.27 1.74 2.08 2.44.82.7 1.74 1.27 2.74 1.7.52.22 1.16.45 1.78.52.45.04.93-.18 1.07-.5.13-.32.42-.91.47-1.04.06-.12.18-.37.07-.62-.1-.25-.36-.38-.61-.5-.15-.07-.32-.14-.5-.22-.18-.08-.4-.18-.6-.08-.2.1-.32.4-.45.58-.12.18-.25.41-.42.47-.16.06-.4.04-.63-.05-.22-.08-.94-.44-1.7-1.1-.63-.54-1.05-1.2-1.18-1.4-.13-.2-.01-.31.09-.42.1-.1.22-.24.32-.36.1-.13.17-.2.22-.33.04-.12.01-.26-.03-.37-.04-.11-.4-1.03-.56-1.41-.14-.3-.28-.35-.48-.36Z'/%3E%3C/svg%3E")
    no-repeat center / 100%;
}

.whatsapp-float__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #f8fafc;
}

.whatsapp-float__text small {
  font-size: 0.7rem;
  color: rgba(248, 250, 252, 0.8);
  font-weight: 500;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(34, 197, 94, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.65;
  }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    padding: 120px 32px 40px;
  background: rgba(248, 250, 252, 0.96);
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    border-bottom: none;
    transform: translateX(110%);
    transition: transform 0.35s ease;
  box-shadow: -18px 0 45px rgba(15, 23, 42, 0.15);
    z-index: 1001;
  }

  .nav a {
    width: 100%;
    padding: 10px 0;
    font-size: 1.05rem;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 800;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .cta-button {
    display: none;
  }

  .header__inner {
    justify-content: space-between;
  }

  .hero {
    padding-top: 120px;
  }

  .hero__content {
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .hero__stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .hero__actions .secondary {
    width: 100%;
    text-align: center;
  }

  .portfolio-cta__actions {
    flex-direction: column;
  }

  .hero--subpage {
    padding-block: 120px 70px;
  }

  .hero__actions .primary {
    width: 100%;
    text-align: center;
  }

  .cta-ribbon__actions {
    flex-direction: column;
  }

  .whatsapp-float {
    bottom: 18px;
    left: 18px;
    padding: 12px 16px;
  }
}

