/*
Theme Name: Grafik Bilişim
Theme URI: https://grafikbilisim.com
Author: Grafik Bilişim
Author URI: https://grafikbilisim.com
Description: Antalya merkezli Grafik Bilişim için hazırlanmış, Elementor ve blok düzenleyici uyumlu, koyu ve modern kurumsal WordPress teması.
Version: 1.0.1
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.0
Text Domain: grafik-bilisim
*/

:root {
  --gb-bg: #06101d;
  --gb-bg-soft: #0b1828;
  --gb-surface: #0f2033;
  --gb-surface-2: #13273d;
  --gb-primary: #29a9df;
  --gb-primary-rgb: 41, 169, 223;
  --gb-accent: #ff9418;
  --gb-accent-rgb: 255, 148, 24;
  --gb-text: #f6f9fc;
  --gb-muted: #9fb0c3;
  --gb-border: rgba(255, 255, 255, 0.1);
  --gb-radius: 22px;
  --gb-radius-sm: 14px;
  --gb-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --gb-container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--gb-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(var(--gb-primary-rgb), 0.12), transparent 28%),
    var(--gb-bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.gb-container {
  width: min(calc(100% - 40px), var(--gb-container));
  margin-inline: auto;
}

.gb-section {
  position: relative;
  padding: 104px 0;
}

.gb-section--soft {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid var(--gb-border);
}

.gb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gb-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gb-kicker::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--gb-accent);
}

.gb-section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.gb-section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.gb-section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--gb-muted);
  font-size: 18px;
}

.gb-grid {
  display: grid;
  gap: 24px;
}

.gb-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gb-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gb-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gb-button:hover,
.gb-button:focus-visible {
  transform: translateY(-2px);
}

.gb-button--primary {
  color: #06101d;
  background: var(--gb-primary);
  box-shadow: 0 12px 32px rgba(var(--gb-primary-rgb), 0.24);
}

.gb-button--accent {
  color: #1b0e00;
  background: var(--gb-accent);
  box-shadow: 0 12px 32px rgba(var(--gb-accent-rgb), 0.25);
}

.gb-button--ghost {
  border-color: var(--gb-border);
  background: rgba(255, 255, 255, 0.04);
}

.gb-button--ghost:hover {
  border-color: rgba(var(--gb-primary-rgb), 0.5);
  background: rgba(var(--gb-primary-rgb), 0.08);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--gb-border);
  background: rgba(6, 16, 29, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.gb-header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 32px;
}

.custom-logo-link,
.gb-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.custom-logo,
.gb-brand img {
  width: auto;
  max-width: 210px;
  height: 58px;
  object-fit: contain;
}

.gb-navigation {
  margin-left: auto;
}

.gb-navigation ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gb-navigation a {
  position: relative;
  color: #d8e3ee;
  font-size: 14px;
  font-weight: 700;
}

.gb-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gb-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.gb-navigation a:hover::after,
.gb-navigation .current-menu-item > a::after {
  transform: scaleX(1);
}

.gb-header-cta {
  padding: 10px 18px;
  font-size: 14px;
}

.gb-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid var(--gb-border);
  border-radius: 12px;
  color: var(--gb-text);
  background: rgba(255, 255, 255, 0.05);
}

.gb-menu-toggle span,
.gb-menu-toggle span::before,
.gb-menu-toggle span::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
}

.gb-menu-toggle span {
  position: relative;
}

.gb-menu-toggle span::before,
.gb-menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.gb-menu-toggle span::before {
  top: -7px;
}

.gb-menu-toggle span::after {
  top: 7px;
}

.gb-hero {
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.gb-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, #06101d 0%, rgba(6, 16, 29, 0.94) 33%, rgba(6, 16, 29, 0.36) 72%, rgba(6, 16, 29, 0.12) 100%),
    var(--gb-hero-image);
  background-position: center;
  background-size: cover;
}

.gb-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 70%, var(--gb-bg)),
    radial-gradient(circle at 42% 46%, rgba(var(--gb-primary-rgb), 0.09), transparent 30%);
}

.gb-hero-content {
  max-width: 720px;
  padding: 154px 0 94px;
}

.gb-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(48px, 7.2vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.gb-hero h1 span {
  color: var(--gb-primary);
}

.gb-hero-copy {
  max-width: 620px;
  margin: 0 0 34px;
  color: #b9c7d6;
  font-size: clamp(18px, 2vw, 21px);
}

.gb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gb-trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -52px;
}

.gb-trust-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius);
  background: rgba(11, 24, 40, 0.88);
  box-shadow: var(--gb-shadow);
  backdrop-filter: blur(16px);
  grid-template-columns: repeat(4, 1fr);
}

.gb-trust-item {
  padding: 28px 26px;
  border-right: 1px solid var(--gb-border);
}

.gb-trust-item:last-child {
  border-right: 0;
}

.gb-trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gb-primary);
  font-size: 27px;
  line-height: 1.1;
}

.gb-trust-item span {
  color: var(--gb-muted);
  font-size: 14px;
}

.gb-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.gb-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gb-primary), var(--gb-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.gb-card:hover {
  border-color: rgba(var(--gb-primary-rgb), 0.38);
  background: linear-gradient(145deg, rgba(var(--gb-primary-rgb), 0.09), rgba(255, 255, 255, 0.025));
  transform: translateY(-6px);
}

.gb-card:hover::before {
  transform: scaleX(1);
}

.gb-card-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--gb-primary-rgb), 0.28);
  border-radius: 14px;
  color: var(--gb-primary);
  background: rgba(var(--gb-primary-rgb), 0.08);
  font-weight: 900;
}

.gb-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.25;
}

.gb-card p {
  margin: 0 0 22px;
  color: var(--gb-muted);
}

.gb-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gb-primary);
  font-size: 14px;
  font-weight: 800;
}

.gb-text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.gb-text-link:hover::after {
  transform: translateX(4px);
}

.gb-about-layout {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.9fr 1.1fr;
}

.gb-experience-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(var(--gb-primary-rgb), 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(var(--gb-primary-rgb), 0.24), transparent 34%),
    linear-gradient(145deg, #0e2238, #081422);
  box-shadow: var(--gb-shadow);
}

.gb-experience-card::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(var(--gb-accent-rgb), 0.4);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 34px rgba(var(--gb-accent-rgb), 0.03),
    0 0 0 68px rgba(var(--gb-primary-rgb), 0.04);
}

.gb-big-number {
  display: block;
  color: var(--gb-accent);
  font-size: clamp(100px, 16vw, 176px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.gb-experience-card p {
  max-width: 270px;
  margin: 18px 0 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.gb-about-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.gb-about-copy > p {
  color: var(--gb-muted);
  font-size: 18px;
}

.gb-check-list {
  display: grid;
  margin: 30px 0 36px;
  padding: 0;
  gap: 14px;
  list-style: none;
  grid-template-columns: 1fr 1fr;
}

.gb-check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.gb-check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #06101d;
  background: var(--gb-primary);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.gb-process {
  counter-reset: gb-step;
}

.gb-process-step {
  position: relative;
  padding: 30px 24px 0 0;
  counter-increment: gb-step;
}

.gb-process-step::before {
  display: block;
  margin-bottom: 20px;
  color: var(--gb-primary);
  content: "0" counter(gb-step);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gb-process-step::after {
  position: absolute;
  top: 41px;
  right: 18px;
  left: 45px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(var(--gb-primary-rgb), 0.45), transparent);
}

.gb-process-step h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.gb-process-step p {
  margin: 0;
  color: var(--gb-muted);
}

.gb-location-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.gb-location-cloud span {
  padding: 9px 15px;
  border: 1px solid rgba(var(--gb-primary-rgb), 0.24);
  border-radius: 999px;
  color: #d8e7f2;
  background: rgba(var(--gb-primary-rgb), 0.06);
  font-size: 14px;
  font-weight: 700;
}

.gb-cta-panel {
  display: grid;
  overflow: hidden;
  align-items: center;
  padding: 56px;
  border: 1px solid rgba(var(--gb-primary-rgb), 0.28);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--gb-accent-rgb), 0.2), transparent 26%),
    linear-gradient(125deg, rgba(var(--gb-primary-rgb), 0.18), rgba(255, 255, 255, 0.035));
  gap: 40px;
  grid-template-columns: 1.2fr 0.8fr;
}

.gb-cta-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.gb-cta-panel p {
  max-width: 650px;
  margin: 0;
  color: var(--gb-muted);
}

.gb-contact-layout {
  display: grid;
  gap: 60px;
  grid-template-columns: 0.8fr 1.2fr;
}

.gb-contact-details {
  display: grid;
  margin-top: 34px;
  gap: 14px;
}

.gb-contact-detail {
  padding: 18px 20px;
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.gb-contact-detail small {
  display: block;
  color: var(--gb-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gb-contact-detail strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
}

.gb-form {
  padding: 34px;
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius);
  background: var(--gb-surface);
  box-shadow: var(--gb-shadow);
}

.gb-form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.gb-field--full {
  grid-column: 1 / -1;
}

.gb-field label {
  display: block;
  margin-bottom: 7px;
  color: #dce6ef;
  font-size: 13px;
  font-weight: 800;
}

.gb-field input,
.gb-field select,
.gb-field textarea {
  width: 100%;
  border: 1px solid var(--gb-border);
  border-radius: 12px;
  outline: none;
  color: var(--gb-text);
  background: #0a1828;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gb-field input,
.gb-field select {
  height: 52px;
  padding: 0 15px;
}

.gb-field textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.gb-field input:focus,
.gb-field select:focus,
.gb-field textarea:focus {
  border-color: var(--gb-primary);
  box-shadow: 0 0 0 3px rgba(var(--gb-primary-rgb), 0.12);
}

.gb-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gb-muted);
  font-size: 13px;
}

.gb-consent input {
  margin-top: 5px;
}

.gb-form-notice {
  margin-bottom: 18px;
  padding: 12px 15px;
  border-radius: 10px;
  color: #dff9ea;
  background: rgba(47, 196, 115, 0.12);
}

.gb-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.gb-post-card {
  overflow: hidden;
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius);
  background: var(--gb-surface);
}

.gb-post-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gb-post-card-content {
  padding: 26px;
}

.gb-post-card time {
  color: var(--gb-primary);
  font-size: 12px;
  font-weight: 800;
}

.gb-post-card h3 {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.gb-post-card p {
  margin: 0;
  color: var(--gb-muted);
}

.gb-page-hero {
  padding: 180px 0 78px;
  border-bottom: 1px solid var(--gb-border);
  background:
    radial-gradient(circle at 80% 20%, rgba(var(--gb-primary-rgb), 0.15), transparent 30%),
    var(--gb-bg-soft);
}

.gb-page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.gb-content {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
  padding: 80px 0 110px;
}

.gb-content > *:first-child {
  margin-top: 0;
}

.gb-content h2,
.gb-content h3 {
  line-height: 1.2;
}

.gb-content p,
.gb-content li {
  color: #becbd8;
}

.gb-content a {
  color: var(--gb-primary);
  text-decoration: underline;
}

.gb-pagination {
  margin-top: 42px;
}

.gb-pagination .nav-links {
  display: flex;
  gap: 8px;
}

.gb-pagination a,
.gb-pagination span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gb-border);
  border-radius: 10px;
}

.gb-pagination .current {
  color: #06101d;
  background: var(--gb-primary);
}

.site-footer {
  border-top: 1px solid var(--gb-border);
  background: #040b13;
}

.gb-footer-main {
  display: grid;
  padding: 72px 0 52px;
  gap: 50px;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
}

.gb-footer-brand img {
  width: auto;
  height: 64px;
}

.gb-footer-brand p {
  max-width: 430px;
  color: var(--gb-muted);
}

.gb-footer-title {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.gb-footer-links a,
.gb-footer-links span {
  color: var(--gb-muted);
}

.gb-footer-links a:hover {
  color: var(--gb-primary);
}

.gb-footer-bottom {
  display: flex;
  padding: 24px 0;
  border-top: 1px solid var(--gb-border);
  color: #6f8093;
  font-size: 13px;
  justify-content: space-between;
}

.gb-floating-actions {
  position: fixed;
  z-index: 999;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
}

.gb-floating-action {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.34);
  transition: transform 0.2s ease;
}

.gb-floating-action:hover {
  transform: translateY(-3px) scale(1.03);
}

.gb-floating-action--whatsapp {
  background: #1fbd67;
}

.gb-floating-action--phone {
  background: var(--gb-primary);
}

.gb-floating-action svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1050px) {
  .gb-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gb-navigation,
  .gb-header-cta {
    display: none;
  }

  .gb-menu-toggle {
    display: inline-flex;
  }

  .gb-navigation.is-open {
    position: absolute;
    top: 84px;
    right: 20px;
    left: 20px;
    display: block;
    padding: 18px;
    border: 1px solid var(--gb-border);
    border-radius: 18px;
    background: rgba(6, 16, 29, 0.98);
    box-shadow: var(--gb-shadow);
  }

  .gb-navigation.is-open ul {
    align-items: stretch;
    gap: 0;
    flex-direction: column;
  }

  .gb-navigation.is-open a {
    display: block;
    padding: 12px 10px;
  }

  .gb-navigation.is-open a::after {
    display: none;
  }

  .gb-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gb-trust-item:nth-child(2) {
    border-right: 0;
  }

  .gb-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--gb-border);
  }

  .gb-about-layout,
  .gb-contact-layout {
    gap: 42px;
  }
}

@media (max-width: 800px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .gb-section {
    padding: 78px 0;
  }

  .gb-hero {
    min-height: 720px;
  }

  .gb-hero::before {
    background-image:
      linear-gradient(90deg, rgba(6, 16, 29, 0.98), rgba(6, 16, 29, 0.72)),
      var(--gb-hero-image);
    background-position: 64% center;
  }

  .gb-hero-content {
    padding-top: 138px;
  }

  .gb-about-layout,
  .gb-contact-layout,
  .gb-cta-panel,
  .gb-footer-main {
    grid-template-columns: 1fr;
  }

  .gb-grid--3 {
    grid-template-columns: 1fr;
  }

  .gb-cta-panel {
    padding: 38px 30px;
  }

  .gb-footer-main {
    gap: 30px;
  }
}

@media (max-width: 580px) {
  .gb-container {
    width: min(calc(100% - 28px), var(--gb-container));
  }

  .gb-header-inner {
    min-height: 74px;
  }

  .custom-logo,
  .gb-brand img {
    max-width: 165px;
    height: 48px;
  }

  .gb-navigation.is-open {
    top: 74px;
    right: 14px;
    left: 14px;
  }

  .gb-hero {
    min-height: 680px;
  }

  .gb-hero h1 {
    font-size: 48px;
  }

  .gb-hero-actions .gb-button {
    width: 100%;
  }

  .gb-trust-strip {
    margin-top: -34px;
  }

  .gb-trust-grid,
  .gb-grid--4,
  .gb-check-list {
    grid-template-columns: 1fr;
  }

  .gb-trust-item,
  .gb-trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--gb-border);
  }

  .gb-trust-item:last-child {
    border-bottom: 0;
  }

  .gb-experience-card {
    min-height: 390px;
    padding: 32px;
  }

  .gb-form {
    padding: 24px 18px;
  }

  .gb-form-grid {
    grid-template-columns: 1fr;
  }

  .gb-field--full {
    grid-column: auto;
  }

  .gb-footer-bottom {
    gap: 10px;
    flex-direction: column;
  }

  .gb-floating-actions {
    right: 14px;
    bottom: 14px;
  }
}
