:root {
  --creamy-white: #FEFCF8;
  --pure-white: #FFFFFF;
  --deep-graphite: #1A1A1A;
  --warm-gray: #6B6B6B;
  --racing-red: #D62828;
  --racing-red-dark: #B71F1F;
  --steel-blue: #1D3557;
  --steel-blue-light: #2A4A75;
  --beige-border: #F0EBE3;
  --mint-fluid: #E8F4F8;
  --peach-fluid: #FDE8E8;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-pill: 64px;
  --shadow-soft: 0 8px 32px rgba(26, 26, 26, 0.06);
  --shadow-card: 0 12px 48px rgba(26, 26, 26, 0.08);
  --shadow-hover: 0 24px 64px rgba(214, 40, 40, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--racing-red) var(--creamy-white);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--creamy-white);
}
::-webkit-scrollbar-thumb {
  background: rgba(214, 40, 40, 0.6);
  border-radius: 4px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--deep-graphite);
  background: var(--creamy-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
}

strong, p, span, a, li, h1, h2, h3, h4, h5, h6, b, small, label {
  color: inherit;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--deep-graphite);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.fluid-canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  overflow-x: hidden;
}

.fluid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.7;
  animation: fluidFlow 20s ease-in-out infinite;
}

.fluid-blob.mint {
  background: var(--mint-fluid);
  width: 500px;
  height: 500px;
  top: -10%;
  left: -10%;
}

.fluid-blob.peach {
  background: var(--peach-fluid);
  width: 600px;
  height: 600px;
  bottom: -20%;
  right: -10%;
  animation-delay: -7s;
}

.fluid-blob.mid {
  background: linear-gradient(135deg, var(--mint-fluid), var(--peach-fluid));
  width: 400px;
  height: 400px;
  top: 40%;
  right: 30%;
  animation-delay: -14s;
}

@keyframes fluidFlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.1); }
  66% { transform: translate(-60px, 80px) scale(0.9); }
}

.kinetic-marquee {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  opacity: 1;
}

.kinetic-line {
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 8vw;
  color: var(--deep-graphite);
  opacity: 0.05;
  animation: marqueeScroll 40s linear infinite;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.kinetic-line:nth-child(2) { animation-direction: reverse; animation-duration: 50s; }
.kinetic-line:nth-child(3) { animation-duration: 60s; }
.kinetic-line:nth-child(4) { animation-direction: reverse; animation-duration: 45s; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gf-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(254, 252, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--beige-border);
  transition: all 0.3s ease;
}

.gf-top-bar.scrolled {
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.05);
}

.gf-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.gf-logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  color: var(--deep-graphite);
}

.gf-logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--racing-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 24px;
  position: relative;
  flex-shrink: 0;
}

.gf-logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid var(--racing-red);
  opacity: 0.2;
  transform: scale(1.1);
}

.gf-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gf-logo-domain {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-graphite);
  letter-spacing: -0.02em;
}

.gf-logo-name {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.gf-main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gf-nav-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-graphite);
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.gf-nav-link:hover, .gf-nav-link.active {
  background: rgba(214, 40, 40, 0.1);
  color: var(--racing-red);
}

.gf-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  white-space: nowrap;
  text-align: center;
  min-height: 44px;
  letter-spacing: 0.01em;
}

.gf-btn-primary {
  background: var(--racing-red);
  color: var(--pure-white);
  border: 2px solid var(--racing-red);
}

.gf-btn-primary:hover {
  background: var(--racing-red-dark);
  border-color: var(--racing-red-dark);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(214, 40, 40, 0.3);
}

.gf-btn-outline {
  background: var(--pure-white);
  color: var(--racing-red);
  border: 2px solid var(--racing-red);
}

.gf-btn-outline:hover {
  background: var(--racing-red);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.gf-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.gf-btn-ghost:hover {
  background: var(--pure-white);
  color: var(--racing-red);
  border-color: var(--pure-white);
}

.gf-burger {
  display: none;
  background: var(--pure-white);
  border: 1px solid var(--beige-border);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  color: var(--deep-graphite);
}

.gf-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--deep-graphite);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.gf-burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--racing-red);
}
.gf-burger.open span:nth-child(2) { opacity: 0; }
.gf-burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--racing-red);
}

.gf-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: rgba(254, 252, 248, 0.98);
  backdrop-filter: blur(40px);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

.gf-mobile-menu.open { transform: translateX(0); }

.gf-mobile-menu .gf-logo-block { margin-bottom: 32px; }

.gf-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gf-mobile-menu ul a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--deep-graphite);
  border-bottom: 1px solid var(--beige-border);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.gf-mobile-menu.open ul a {
  animation: menuSlide 0.5s ease forwards;
}

.gf-mobile-menu.open ul li:nth-child(1) a { animation-delay: 0.1s; }
.gf-mobile-menu.open ul li:nth-child(2) a { animation-delay: 0.15s; }
.gf-mobile-menu.open ul li:nth-child(3) a { animation-delay: 0.2s; }
.gf-mobile-menu.open ul li:nth-child(4) a { animation-delay: 0.25s; }
.gf-mobile-menu.open ul li:nth-child(5) a { animation-delay: 0.3s; }
.gf-mobile-menu.open ul li:nth-child(6) a { animation-delay: 0.35s; }

@keyframes menuSlide {
  to { opacity: 1; transform: translateY(0); }
}

.gf-mobile-menu ul a:hover { color: var(--racing-red); padding-left: 12px; }

.gf-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--deep-graphite);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gf-overlay.open { opacity: 1; visibility: visible; }

.gf-hero {
  position: relative;
  min-height: 92vh;
  padding: 120px 0 60px;
  overflow: hidden;
  background: var(--creamy-white);
  color: var(--deep-graphite);
  overflow-x: hidden;
}

.gf-hero.compact {
  min-height: 60vh;
  padding: 140px 0 60px;
}

.gf-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.gf-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--pure-white);
  border: 1px solid var(--beige-border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--racing-red);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gf-hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--racing-red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.gf-hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.gf-hero h1 .accent {
  color: var(--racing-red);
  display: inline-block;
  position: relative;
}

.gf-hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 0.18em;
  background: var(--racing-red);
  opacity: 0.2;
  border-radius: 4px;
  z-index: -1;
}

.gf-hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--warm-gray);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.gf-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.gf-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--beige-border);
}

.gf-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--racing-red);
  line-height: 1;
  letter-spacing: -0.03em;
}

.gf-stat-label {
  font-size: 13px;
  color: var(--warm-gray);
  margin-top: 6px;
}

.gf-hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  z-index: 1;
}

.gf-hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
  background: var(--pure-white);
  transform: rotate(2deg);
  transition: all 0.5s ease;
}

.gf-hero-img-frame:hover { transform: rotate(0deg) scale(1.02); }

.gf-hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gf-hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214, 40, 40, 0.1), transparent);
  pointer-events: none;
}

.gf-floating-card {
  position: absolute;
  background: var(--pure-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.gf-floating-card.fc-1 {
  top: 10%;
  left: -40px;
  animation: floatY 6s ease-in-out infinite;
}

.gf-floating-card.fc-2 {
  bottom: 15%;
  right: -30px;
  animation: floatY 6s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.gf-floating-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(214, 40, 40, 0.1);
  color: var(--racing-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.gf-floating-card .lbl {
  font-size: 11px;
  color: var(--warm-gray);
  display: block;
  margin-bottom: 2px;
}

.gf-floating-card .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-graphite);
}

.gf-section {
  padding: 80px 0;
  position: relative;
}

.gf-section.compact { padding: 56px 0; }

.gf-section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.gf-section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--racing-red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(214, 40, 40, 0.08);
  border-radius: var(--radius-pill);
}

.gf-section h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.gf-section h2 .accent { color: var(--racing-red); }

.gf-section-lead {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 1.7;
}

.gf-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 1px solid transparent;
  color: var(--deep-graphite);
  height: 100%;
  z-index: 1;
}

.gf-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 10;
  border-color: var(--racing-red);
}

.gf-card .ico-lg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--racing-red);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.gf-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--deep-graphite);
}

.gf-card p {
  color: var(--warm-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.gf-card.dark {
  background: var(--steel-blue);
  color: var(--pure-white);
}

.gf-card.dark p { color: rgba(255, 255, 255, 0.8); }
.gf-card.dark h3 { color: var(--pure-white); }
.gf-card.dark .ico-lg { background: var(--racing-red); }

.gf-service-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid var(--beige-border);
  color: var(--deep-graphite);
}

.gf-service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 10;
  border-color: var(--racing-red);
}

.gf-service-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--mint-fluid);
}

.gf-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gf-service-card:hover .gf-service-img img { transform: scale(1.08); }

.gf-service-num {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--racing-red);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  z-index: 2;
}

.gf-service-body {
  padding: 24px;
}

.gf-service-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--deep-graphite);
}

.gf-service-body .lead {
  color: var(--warm-gray);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.gf-service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--beige-border);
  margin-top: 16px;
}

.gf-service-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--racing-red);
}

.gf-service-time {
  font-size: 12px;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.gf-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
  margin-top: 40px;
}

.gf-bento-item {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--beige-border);
  color: var(--deep-graphite);
  z-index: 1;
}

.gf-bento-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 10;
  border-color: var(--racing-red);
}

.gf-bento-item.large { grid-column: span 2; grid-row: span 2; }
.gf-bento-item.wide { grid-column: span 2; grid-row: span 1; }
.gf-bento-item.tall { grid-column: span 1; grid-row: span 2; }

.gf-bento-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--deep-graphite);
}

.gf-bento-item p { color: var(--warm-gray); font-size: 15px; line-height: 1.6; }

.gf-bento-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gf-bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gf-bento-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(254, 252, 248, 0.96));
}

.gf-bento-content {
  position: relative;
  z-index: 2;
  color: var(--deep-graphite);
}

.gf-bento-item.dark {
  background: var(--steel-blue);
  color: var(--pure-white);
}

.gf-bento-item.dark h3, .gf-bento-item.dark p { color: var(--pure-white); }
.gf-bento-item.dark p { color: rgba(255, 255, 255, 0.8); }

.gf-bento-item.red {
  background: var(--racing-red);
  color: var(--pure-white);
}

.gf-bento-item.red h3, .gf-bento-item.red p { color: var(--pure-white); }

.gf-bento-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--racing-red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.gf-process-step {
  position: relative;
  padding: 32px 28px;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  border: 1px solid var(--beige-border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  color: var(--deep-graphite);
}

.gf-process-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 10;
  border-color: var(--racing-red);
}

.gf-process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--racing-red);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin: 0 auto 20px;
  position: relative;
}

.gf-process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--deep-graphite);
}

.gf-process-step p { color: var(--warm-gray); font-size: 14px; line-height: 1.6; }

.gf-process-line {
  position: absolute;
  top: 60px;
  right: -32px;
  width: 64px;
  height: 2px;
  background: var(--racing-red);
  opacity: 0.3;
  z-index: 0;
}

.gf-process-line::before {
  content: '→';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  color: var(--racing-red);
  font-size: 18px;
  font-weight: 700;
}

.gf-masonry {
  column-count: 3;
  column-gap: 24px;
}

.gf-masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--pure-white);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  cursor: pointer;
  color: var(--deep-graphite);
}

.gf-masonry-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 10;
}

.gf-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gf-masonry-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(26, 26, 26, 0.9), transparent);
  color: var(--pure-white);
}

.gf-masonry-caption h4 {
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--pure-white);
}

.gf-masonry-caption span {
  font-size: 13px;
  opacity: 0.85;
  color: var(--pure-white);
}

.gf-flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gf-flex-item {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 1px solid var(--beige-border);
  z-index: 1;
  color: var(--deep-graphite);
  cursor: pointer;
}

.gf-flex-item:hover {
  transform: scale(1.04);
  background: var(--racing-red);
  color: var(--pure-white);
  border-color: var(--racing-red);
  z-index: 10;
  box-shadow: var(--shadow-hover);
}

.gf-flex-item:hover h3,
.gf-flex-item:hover p,
.gf-flex-item:hover .gf-flex-num { color: var(--pure-white); }

.gf-flex-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--racing-red);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.gf-flex-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--deep-graphite);
  transition: color 0.3s ease;
}

.gf-flex-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.gf-team-list {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--beige-border);
}

.gf-team-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--beige-border);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  color: var(--deep-graphite);
  z-index: 1;
}

.gf-team-row:last-child { border-bottom: none; }
.gf-team-row:hover { padding-left: 16px; color: var(--racing-red); z-index: 10; }

.gf-team-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  flex: 1;
  letter-spacing: -0.02em;
  color: inherit;
}

.gf-team-role {
  font-size: 14px;
  color: var(--warm-gray);
  min-width: 140px;
}

.gf-team-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--beige-border);
  background: var(--mint-fluid);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gf-team-row:hover .gf-team-photo {
  opacity: 1;
  transform: scale(1);
  border-color: var(--racing-red);
}

.gf-team-photo img { width: 100%; height: 100%; object-fit: cover; }

.gf-coverflow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  min-height: 400px;
  perspective: 1500px;
}

.gf-coverflow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 320px;
}

.gf-coverflow-card {
  position: absolute;
  width: min(85%, 480px);
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--beige-border);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--deep-graphite);
}

.gf-coverflow-card.center {
  z-index: 5;
  transform: translateX(0) scale(1) rotateY(0);
  opacity: 1;
}

.gf-coverflow-card.left {
  z-index: 2;
  transform: translateX(-65%) scale(0.85) rotateY(15deg);
  opacity: 0.4;
  filter: blur(2px);
}

.gf-coverflow-card.right {
  z-index: 2;
  transform: translateX(65%) scale(0.85) rotateY(-15deg);
  opacity: 0.4;
  filter: blur(2px);
}

.gf-coverflow-card.far {
  opacity: 0;
  transform: translateX(0) scale(0.5);
  pointer-events: none;
}

.gf-coverflow-stars {
  color: var(--racing-red);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.gf-coverflow-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--deep-graphite);
  margin-bottom: 24px;
}

.gf-coverflow-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--beige-border);
}

.gf-coverflow-author .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--racing-red);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.gf-coverflow-author h4 {
  font-size: 15px;
  margin: 0;
  color: var(--deep-graphite);
}

.gf-coverflow-author span {
  font-size: 13px;
  color: var(--warm-gray);
}

.gf-coverflow-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.gf-coverflow-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 1px solid var(--beige-border);
  color: var(--deep-graphite);
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gf-coverflow-nav button:hover {
  background: var(--racing-red);
  color: var(--pure-white);
  border-color: var(--racing-red);
  transform: scale(1.1);
}

.gf-faq {
  columns: 2;
  column-gap: 24px;
}

.gf-faq-item {
  break-inside: avoid;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid var(--beige-border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  color: var(--deep-graphite);
  cursor: pointer;
}

.gf-faq-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-hover);
  z-index: 10;
  border-color: var(--racing-red);
}

.gf-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--deep-graphite);
  line-height: 1.4;
  margin-bottom: 8px;
}

.gf-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(214, 40, 40, 0.1);
  color: var(--racing-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  line-height: 1;
}

.gf-faq-item.open .gf-faq-icon {
  background: var(--racing-red);
  color: var(--pure-white);
  transform: rotate(45deg);
}

.gf-faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  color: var(--warm-gray);
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 0;
}

.gf-faq-item.open .gf-faq-a {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
  padding-top: 12px;
  padding-bottom: 4px;
  border-top: 1px solid var(--beige-border);
}

.gf-faq-cat {
  display: inline-block;
  font-size: 11px;
  color: var(--racing-red);
  background: rgba(214, 40, 40, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gf-cta-band {
  background: var(--racing-red);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  color: var(--pure-white);
  text-align: center;
}

.gf-cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gf-cta-band h2 {
  color: var(--pure-white);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.gf-cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.gf-cta-band .gf-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.gf-cta-band .gf-btn-primary {
  background: var(--pure-white);
  color: var(--racing-red);
  border-color: var(--pure-white);
}

.gf-cta-band .gf-btn-primary:hover {
  background: var(--deep-graphite);
  border-color: var(--deep-graphite);
  color: var(--pure-white);
}

.gf-cta-band .gf-btn-outline {
  background: transparent;
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.gf-cta-band .gf-btn-outline:hover {
  background: var(--pure-white);
  color: var(--racing-red);
}

.gf-contact-section {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  color: var(--deep-graphite);
}

.gf-contact-form-wrap {
  padding: 48px;
  background: var(--pure-white);
}

.gf-contact-info-wrap {
  padding: 48px;
  background: var(--steel-blue);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.gf-contact-info-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: rgba(214, 40, 40, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.gf-contact-info-wrap h2 {
  color: var(--pure-white);
  font-size: 32px;
  margin-bottom: 12px;
}

.gf-contact-info-wrap > p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.gf-form-group {
  margin-bottom: 20px;
  position: relative;
}

.gf-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-graphite);
  margin-bottom: 6px;
}

.gf-form-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--beige-border);
  background: transparent;
  padding: 12px 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--deep-graphite);
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.gf-form-input::placeholder { color: #aaa; }

.gf-form-input:focus {
  outline: none;
  border-bottom-color: var(--racing-red);
}

.gf-form-input:invalid:not(:placeholder-shown) {
  border-bottom-color: var(--racing-red);
}

textarea.gf-form-input {
  resize: vertical;
  min-height: 100px;
}

.gf-contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.gf-contact-info-item:last-child { border-bottom: none; }

.gf-contact-info-item .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.gf-contact-info-item .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.gf-contact-info-item .val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--pure-white);
}

.gf-contact-info-item .val a { color: var(--pure-white); }
.gf-contact-info-item .val a:hover { color: var(--racing-red); }

.gf-footer {
  background: var(--racing-red);
  color: var(--pure-white);
  padding: 64px 0 24px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  overflow: hidden;
}

.gf-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.gf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.gf-footer-brand h3 {
  color: var(--pure-white);
  font-size: 26px;
  margin-bottom: 12px;
}

.gf-footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.gf-footer-col h4 {
  color: var(--pure-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gf-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gf-footer-col ul a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: color 0.3s ease;
}

.gf-footer-col ul a:hover { color: var(--pure-white); padding-left: 6px; }

.gf-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.gf-footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.gf-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gf-footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.gf-footer-legal a:hover { color: var(--pure-white); }

.gf-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--pure-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.18);
  z-index: 1080;
  border: 1px solid var(--beige-border);
  color: var(--deep-graphite);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gf-cookie-banner.hidden {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

.gf-cookie-banner h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--deep-graphite);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gf-cookie-banner p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.gf-cookie-banner .gf-cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gf-cookie-banner button {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
  flex: 1;
  white-space: nowrap;
}

.gf-cookie-accept {
  background: var(--racing-red);
  color: var(--pure-white);
  border: 2px solid var(--racing-red);
}

.gf-cookie-accept:hover {
  background: var(--racing-red-dark);
  border-color: var(--racing-red-dark);
}

.gf-cookie-decline {
  background: transparent;
  color: var(--deep-graphite);
  border: 2px solid var(--beige-border);
}

.gf-cookie-decline:hover {
  border-color: var(--deep-graphite);
  background: var(--creamy-white);
}

.gf-cookie-banner a {
  color: var(--racing-red);
  text-decoration: underline;
  font-weight: 600;
}

.gf-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gf-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.gf-page-header {
  background: var(--creamy-white);
  padding: 140px 0 56px;
  position: relative;
  overflow: hidden;
  color: var(--deep-graphite);
}

.gf-page-header h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  color: var(--deep-graphite);
}

.gf-page-header p {
  font-size: 17px;
  color: var(--warm-gray);
  max-width: 600px;
  line-height: 1.7;
}

.gf-breadcrumb {
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.gf-breadcrumb a { color: var(--racing-red); }
.gf-breadcrumb span { margin: 0 8px; }

.gf-pricing-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(214, 40, 40, 0.1);
  color: var(--racing-red);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.gf-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gf-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--deep-graphite);
  font-size: 15px;
  line-height: 1.5;
}

.gf-feature-list li::before {
  content: '✓';
  color: var(--racing-red);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(214, 40, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 1px;
}

.gf-thanks-wrap {
  text-align: center;
  padding: 120px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.gf-thanks-check {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--racing-red);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 32px;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.gf-thanks-wrap h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--deep-graphite);
}

.gf-thanks-wrap p {
  font-size: 17px;
  color: var(--warm-gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.gf-legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--deep-graphite);
}

.gf-legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--deep-graphite);
  letter-spacing: -0.02em;
}

.gf-legal-content h2:first-child { margin-top: 0; }

.gf-legal-content p, .gf-legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.gf-legal-content ul { padding-left: 20px; margin-bottom: 16px; }

.gf-success-msg {
  background: rgba(214, 40, 40, 0.08);
  border: 1px solid var(--racing-red);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: var(--racing-red);
  font-weight: 600;
  margin-bottom: 20px;
  display: none;
}

.gf-success-msg.show { display: block; animation: scaleIn 0.4s ease; }

@media (max-width: 1199px) {
  .gf-bento { grid-template-columns: repeat(3, 1fr); }
  .gf-bento-item.large { grid-column: span 2; grid-row: span 2; }
  .gf-bento-item.wide { grid-column: span 2; }
  .gf-bento-item.tall { grid-column: span 1; grid-row: span 1; }
  .gf-masonry { column-count: 2; }
  .gf-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .gf-hero-visual { width: 40%; right: 0; }
  .gf-floating-card.fc-1 { left: 0; }
  .gf-floating-card.fc-2 { right: 0; }
}

@media (max-width: 991px) {
  .gf-main-nav, .gf-header-cta { display: none; }
  .gf-burger { display: flex; }
  .gf-hero { min-height: auto; padding: 120px 0 60px; }
  .gf-hero-visual { position: relative; right: auto; top: auto; transform: none; width: 100%; max-width: 500px; margin: 40px auto 0; }
  .gf-hero-stats { gap: 24px; }
  .gf-stat-num { font-size: 28px; }
  .gf-process-line { display: none; }
  .gf-contact-section { grid-template-columns: 1fr; }
  .gf-contact-form-wrap, .gf-contact-info-wrap { padding: 32px 24px; }
  .gf-faq { columns: 1; }
  .gf-flex-grow-grid { grid-template-columns: repeat(2, 1fr); }
  .gf-coverflow-card.left, .gf-coverflow-card.right { opacity: 0.15; }
  .gf-coverflow-card.left { transform: translateX(-50%) scale(0.7) rotateY(15deg); }
  .gf-coverflow-card.right { transform: translateX(50%) scale(0.7) rotateY(-15deg); }
}

@media (max-width: 767px) {
  .gf-section { padding: 60px 0; }
  .gf-section-head { margin-bottom: 40px; }
  .gf-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gf-bento-item, .gf-bento-item.large, .gf-bento-item.wide, .gf-bento-item.tall {
    grid-column: span 1;
    grid-row: auto;
    min-height: 200px;
  }
  .gf-bento-item { padding: 24px; }
  .gf-masonry { column-count: 1; }
  .gf-flex-grow-grid { grid-template-columns: 1fr; }
  .gf-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gf-footer-bottom { flex-direction: column; text-align: center; }
  .gf-footer-legal { justify-content: center; }
  .gf-hero-cta { flex-direction: column; align-items: stretch; }
  .gf-hero-cta .gf-cta-btn { width: 100%; }
  .gf-floating-card.fc-1 { left: 8px; top: 5%; }
  .gf-floating-card.fc-2 { right: 8px; bottom: 8%; }
  .gf-team-row { flex-wrap: wrap; gap: 12px; }
  .gf-team-role { width: 100%; }
  .gf-cta-band { padding: 40px 24px; }
  .gf-cookie-banner { left: 16px; right: 16px; max-width: none; bottom: 16px; padding: 20px; }
  .gf-coverflow-card.center { width: 92%; padding: 28px 20px; }
  .gf-coverflow-text { font-size: 15px; }
  .gf-team-photo { width: 40px; height: 40px; }
}

@media (min-width: 992px) {
  .gf-header-cta { display: inline-flex; }
}
