/* ============================================================
   GRAPHICS.CSS — Graphics Design Services Page
   ============================================================ */

/* ══ HERO ══ */
.gfx-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0e0a06 0%,
    #1a130a 60%,
    #0e0a06 100%
  );
}
.gfx-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(
      rgba(240,180,41,0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(240,180,41,0.04) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  z-index: 0;
}
.gfx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.gfx-orb-1 {
  width: 500px; height: 500px;
  background: rgba(240,180,41,0.2);
  top: -150px; left: -150px;
  animation: orbFloat 10s
    ease-in-out infinite;
}
.gfx-orb-2 {
  width: 350px; height: 350px;
  background: rgba(99,102,241,0.15);
  bottom: -80px; right: 5%;
  animation: orbFloat 12s
    ease-in-out infinite reverse;
}
.gfx-orb-3 {
  width: 200px; height: 200px;
  background: rgba(76,175,80,0.15);
  top: 30%; right: 15%;
  animation: orbFloat 8s
    ease-in-out infinite;
}
.gfx-hero .container {
  position: relative;
  z-index: 1;
}

/* ── Hero Badge ── */
.gfx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.1);
  border: 1px solid
    rgba(240,180,41,0.25);
  color: #f0b429;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeSlideDown
    0.6s ease both;
}

/* ── Hero Title ── */
.gfx-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(
    2.2rem, 5.5vw, 3.8rem
  );
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 22px;
  animation: fadeSlideUp
    0.7s 0.1s ease both;
}
.gfx-accent-gold {
  background: linear-gradient(
    135deg, #f0b429, #fbbf24
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gfx-accent-green {
  background: linear-gradient(
    135deg, #4caf50, #81c784
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero Sub ── */
.gfx-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,235,200,0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
  animation: fadeSlideUp
    0.7s 0.2s ease both;
}

/* ── Pills ── */
.gfx-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  animation: fadeSlideUp
    0.7s 0.25s ease both;
}
.gfx-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid;
}
.gfx-pill-gold {
  background: rgba(240,180,41,0.1);
  border-color: rgba(240,180,41,0.25);
  color: #f0b429;
}
.gfx-pill-blue {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.25);
  color: #60a5fa;
}
.gfx-pill-green {
  background: rgba(76,175,80,0.1);
  border-color: rgba(76,175,80,0.25);
  color: #4caf50;
}
.gfx-pill-purple {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.25);
  color: #818cf8;
}
.gfx-pill-teal {
  background: rgba(20,184,166,0.1);
  border-color: rgba(20,184,166,0.25);
  color: #2dd4bf;
}
.gfx-pill-orange {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.25);
  color: #fb923c;
}

/* ── Stats ── */
.gfx-hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeSlideUp
    0.7s 0.3s ease both;
}
.gfx-stat .gfx-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.gfx-stat .gfx-stat-val em {
  color: #f0b429;
  font-style: normal;
  font-size: 1rem;
}
.gfx-stat .gfx-stat-lbl {
  font-size: 11px;
  color: rgba(255,235,200,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ── Buttons ── */
.gfx-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeSlideUp
    0.7s 0.4s ease both;
}
.btn-gfx-primary {
  background: linear-gradient(
    135deg, #25d366, #1da851
  );
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px
    rgba(37,211,102,0.35);
  transition: all 0.3s;
}
.btn-gfx-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px
    rgba(37,211,102,0.5);
  color: #fff;
}
.btn-gfx-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid
    rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-gfx-ghost:hover {
  background: rgba(240,180,41,0.1);
  border-color: rgba(240,180,41,0.4);
  color: #f0b429;
}

/* ── Promise Row ── */
.gfx-promise-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeSlideUp
    0.7s 0.5s ease both;
}
.gfx-promise-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,235,200,0.5);
}
.gfx-promise-item i {
  color: #f0b429;
  font-size: 12px;
}

/* ══ PREVIEW GRID ══ */
.gfx-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  animation: fadeSlideUp
    0.8s 0.2s ease both;
}
.gfx-prev-card {
  border-radius: 20px;
  padding: 20px;
  border: 1px solid
    rgba(255,255,255,0.08);
  transition: all 0.3s;
  cursor: default;
}
.gfx-prev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px
    rgba(0,0,0,0.4);
}
.gpc-logo {
  background: linear-gradient(
    160deg, #1a1000, #2d1f00
  );
  border-color: rgba(240,180,41,0.2);
}
.gpc-logo:hover {
  border-color: rgba(240,180,41,0.4);
}
.gpc-social {
  background: linear-gradient(
    160deg, #0a1428, #0f2040
  );
  border-color: rgba(59,130,246,0.2);
}
.gpc-social:hover {
  border-color: rgba(59,130,246,0.4);
}
.gpc-card {
  background: linear-gradient(
    160deg, #0a1f0b, #0f2a10
  );
  border-color: rgba(76,175,80,0.2);
}
.gpc-card:hover {
  border-color: rgba(76,175,80,0.4);
}
.gpc-nfc {
  background: linear-gradient(
    160deg, #061a18, #0a2822
  );
  border-color: rgba(20,184,166,0.2);
}
.gpc-nfc:hover {
  border-color: rgba(20,184,166,0.4);
}
.gpc-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.gpc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.gpc-icon-gold {
  background: rgba(240,180,41,0.15);
  color: #f0b429;
  border: 1px solid
    rgba(240,180,41,0.25);
}
.gpc-icon-blue {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  border: 1px solid
    rgba(59,130,246,0.25);
}
.gpc-icon-green {
  background: rgba(76,175,80,0.15);
  color: #4caf50;
  border: 1px solid
    rgba(76,175,80,0.25);
}
.gpc-icon-teal {
  background: rgba(20,184,166,0.15);
  color: #2dd4bf;
  border: 1px solid
    rgba(20,184,166,0.25);
}
.gpc-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gpc-badge-gold {
  background: rgba(240,180,41,0.15);
  color: #f0b429;
  border: 1px solid
    rgba(240,180,41,0.25);
}
.gpc-badge-blue {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  border: 1px solid
    rgba(59,130,246,0.25);
}
.gpc-badge-green {
  background: rgba(76,175,80,0.15);
  color: #4caf50;
  border: 1px solid
    rgba(76,175,80,0.25);
}
.gpc-badge-teal {
  background: rgba(20,184,166,0.15);
  color: #2dd4bf;
  border: 1px solid
    rgba(20,184,166,0.25);
}
.gpc-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

/* ── Logo Preview ── */
.gpc-logo-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 10px;
}
.glb-circle {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
}
.glb-gold {
  background: linear-gradient(
    135deg, #d97706, #f0b429
  );
}
.glb-name {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.glb-tag {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
}

/* ── Social Post Preview ── */
.gpc-post-prev {
  background: linear-gradient(
    135deg,
    rgba(59,130,246,0.3),
    rgba(37,99,235,0.2)
  );
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  margin-bottom: 10px;
  border: 1px solid
    rgba(59,130,246,0.2);
}
.gpp-top {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}
.gpp-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}

/* ── Visiting Card Preview ── */
.gpc-vc-prev {
  background: #111;
  border: 1px solid
    rgba(240,180,41,0.2);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.gvc-name {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.gvc-role {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.gvc-num {
  font-size: 10px;
  color: #4caf50;
  font-weight: 700;
}

/* ── NFC Preview ── */
.gpc-nfc-prev {
  background: rgba(20,184,166,0.1);
  border: 1px solid
    rgba(20,184,166,0.2);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  margin-bottom: 10px;
}
.gpc-nfc-icon {
  font-size: 22px;
  color: #2dd4bf;
  margin-bottom: 6px;
  display: block;
}
.gpc-nfc-tap {
  font-size: 9px;
  font-weight: 800;
  color: rgba(45,212,191,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gpc-price {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
}

/* ══ TRUST BAR ══ */
.gfx-trust-bar {
  background: rgba(20,13,6,0.9);
  border-top: 1px solid
    rgba(240,180,41,0.1);
  border-bottom: 1px solid
    rgba(240,180,41,0.1);
  padding: 16px 0;
  backdrop-filter: blur(10px);
}
.gfx-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.gfx-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,235,200,0.5);
}
.gfx-trust-item i { color: #f0b429; }

/* ══ SERVICES SECTION ══ */
.gfx-services-section {
  padding: 100px 0;
  background: #0d0d0d;
}
.gfx-svc-card {
  background: #111111;
  border-radius: 22px;
  padding: 32px 26px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid
    rgba(255,255,255,0.07);
}
.gfx-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: 0.3s;
}
.gfx-svc-gold::before {
  background: linear-gradient(
    90deg, transparent,
    #f0b429, transparent
  );
}
.gfx-svc-blue::before {
  background: linear-gradient(
    90deg, transparent,
    #60a5fa, transparent
  );
}
.gfx-svc-green::before {
  background: linear-gradient(
    90deg, transparent,
    #4caf50, transparent
  );
}
.gfx-svc-purple::before {
  background: linear-gradient(
    90deg, transparent,
    #818cf8, transparent
  );
}
.gfx-svc-teal::before {
  background: linear-gradient(
    90deg, transparent,
    #2dd4bf, transparent
  );
}
.gfx-svc-orange::before {
  background: linear-gradient(
    90deg, transparent,
    #fb923c, transparent
  );
}
.gfx-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px
    rgba(0,0,0,0.5);
}
.gfx-svc-gold:hover {
  border-color: rgba(240,180,41,0.3);
}
.gfx-svc-blue:hover {
  border-color: rgba(59,130,246,0.3);
}
.gfx-svc-green:hover {
  border-color: rgba(76,175,80,0.3);
}
.gfx-svc-purple:hover {
  border-color: rgba(99,102,241,0.3);
}
.gfx-svc-teal:hover {
  border-color: rgba(20,184,166,0.3);
}
.gfx-svc-orange:hover {
  border-color: rgba(249,115,22,0.3);
}
.gfx-svc-card:hover::before {
  opacity: 1;
}
.gfx-svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.gfx-svc-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.gsic-gold {
  background: rgba(240,180,41,0.12);
  color: #f0b429;
  border: 1px solid
    rgba(240,180,41,0.2);
}
.gsic-blue {
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border: 1px solid
    rgba(59,130,246,0.2);
}
.gsic-green {
  background: rgba(76,175,80,0.12);
  color: #4caf50;
  border: 1px solid
    rgba(76,175,80,0.2);
}
.gsic-purple {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
  border: 1px solid
    rgba(99,102,241,0.2);
}
.gsic-teal {
  background: rgba(20,184,166,0.12);
  color: #2dd4bf;
  border: 1px solid
    rgba(20,184,166,0.2);
}
.gsic-orange {
  background: rgba(249,115,22,0.12);
  color: #fb923c;
  border: 1px solid
    rgba(249,115,22,0.2);
}
.gfx-svc-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gsb-gold {
  background: rgba(240,180,41,0.12);
  color: #f0b429;
  border: 1px solid
    rgba(240,180,41,0.2);
}
.gsb-blue {
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border: 1px solid
    rgba(59,130,246,0.2);
}
.gsb-green {
  background: rgba(76,175,80,0.12);
  color: #4caf50;
  border: 1px solid
    rgba(76,175,80,0.2);
}
.gsb-purple {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
  border: 1px solid
    rgba(99,102,241,0.2);
}
.gsb-teal {
  background: rgba(20,184,166,0.12);
  color: #2dd4bf;
  border: 1px solid
    rgba(20,184,166,0.2);
}
.gsb-orange {
  background: rgba(249,115,22,0.12);
  color: #fb923c;
  border: 1px solid
    rgba(249,115,22,0.2);
}
.gfx-svc-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.gfx-svc-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 18px;
}
.gfx-svc-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
}
.gsi-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.gsi-item i {
  color: #4caf50;
  font-size: 10px;
  flex-shrink: 0;
}
.gfx-svc-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.gsp-from {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.gsp-val {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.gsp-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.gsp-gold { color: #f0b429; }
.gsp-blue { color: #60a5fa; }
.gsp-green { color: #4caf50; }
.gsp-purple { color: #818cf8; }
.gsp-teal { color: #2dd4bf; }
.gsp-orange { color: #fb923c; }
.btn-gfx-svc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid;
  width: 100%;
  justify-content: center;
}
.btn-gfx-gold {
  background: rgba(240,180,41,0.1);
  border-color: rgba(240,180,41,0.25);
  color: #f0b429;
}
.btn-gfx-gold:hover {
  background: linear-gradient(
    135deg, #d97706, #f0b429
  );
  color: #000;
  border-color: transparent;
  transform: translateY(-2px);
}
.btn-gfx-blue {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.25);
  color: #60a5fa;
}
.btn-gfx-blue:hover {
  background: linear-gradient(
    135deg, #2563eb, #60a5fa
  );
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.btn-gfx-green {
  background: rgba(76,175,80,0.1);
  border-color: rgba(76,175,80,0.25);
  color: #4caf50;
}
.btn-gfx-green:hover {
  background: linear-gradient(
    135deg, #2e7d32, #4caf50
  );
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.btn-gfx-purple {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.25);
  color: #818cf8;
}
.btn-gfx-purple:hover {
  background: linear-gradient(
    135deg, #4f46e5, #818cf8
  );
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.btn-gfx-teal {
  background: rgba(20,184,166,0.1);
  border-color: rgba(20,184,166,0.25);
  color: #2dd4bf;
}
.btn-gfx-teal:hover {
  background: linear-gradient(
    135deg, #0f766e, #2dd4bf
  );
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}
.btn-gfx-orange {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.25);
  color: #fb923c;
}
.btn-gfx-orange:hover {
  background: linear-gradient(
    135deg, #c2410c, #fb923c
  );
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ══ WHY CHOOSE US ══ */
.gfx-why-section {
  padding: 100px 0;
  background: #0a0a0a;
}
.gfx-why-card {
  background: #111111;
  border: 1px solid
    rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 26px;
  height: 100%;
  transition: all 0.3s;
  text-align: center;
}
.gfx-why-card:hover {
  border-color: rgba(240,180,41,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px
    rgba(0,0,0,0.4);
}
.gfx-why-icon {
  width: 60px; height: 60px;
  background: rgba(240,180,41,0.1);
  border: 1px solid
    rgba(240,180,41,0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #f0b429;
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.gfx-why-card:hover .gfx-why-icon {
  background: rgba(240,180,41,0.2);
  box-shadow: 0 8px 24px
    rgba(240,180,41,0.25);
}
.gfx-why-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.gfx-why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* ══ PROCESS SECTION ══ */
.gfx-process-section {
  padding: 100px 0;
  background: #0d0d0d;
}
.gfx-proc-card {
  background: #111111;
  border: 1px solid
    rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.gfx-proc-card:hover {
  border-color: rgba(240,180,41,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px
    rgba(0,0,0,0.4);
}
.gfx-proc-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(240,180,41,0.1);
  line-height: 1;
  margin-bottom: 14px;
}
.gfx-proc-icon {
  width: 50px; height: 50px;
  background: rgba(240,180,41,0.1);
  border: 1px solid
    rgba(240,180,41,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #f0b429;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.gfx-proc-card:hover .gfx-proc-icon {
  background: rgba(240,180,41,0.2);
  box-shadow: 0 6px 20px
    rgba(240,180,41,0.2);
}
.gfx-proc-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.gfx-proc-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}

/* ══ TESTIMONIALS ══ */
.gfx-testi-section {
  padding: 100px 0;
  background: #0a0a0a;
}
.gfx-testi-wrap {
  background: #111111;
  border: 1px solid
    rgba(240,180,41,0.1);
  border-radius: 28px;
  padding: 60px 40px;
}
.gfx-testi-card {
  background: #181818;
  border: 1px solid
    rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 26px;
  border-bottom: 3px solid #f0b429;
  transition: all 0.3s;
  height: 100%;
}
.gfx-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px
    rgba(0,0,0,0.4);
  border-color: rgba(240,180,41,0.2);
}
.gfx-testi-stars {
  color: #f0b429;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.gfx-testi-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.gfx-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gfx-testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.gav-gold {
  background: linear-gradient(
    135deg, #d97706, #f0b429
  );
}
.gav-green {
  background: linear-gradient(
    135deg, #1b5e20, #4caf50
  );
}
.gav-purple {
  background: linear-gradient(
    135deg, #4f46e5, #818cf8
  );
}
.gfx-testi-name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.gfx-testi-role {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}

/* ══ FAQ ══ */
.gfx-faq-section {
  padding: 100px 0;
  background: #0d0d0d;
}
.gfx-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gfx-faq-item {
  background: #111111;
  border: 1px solid
    rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.gfx-faq-item.open {
  border-color: rgba(240,180,41,0.3);
}
.gfx-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: 0.3s;
}
.gfx-faq-q:hover {
  color: #f0b429;
}
.gfx-faq-q i {
  color: #f0b429;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.gfx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.gfx-faq-a p {
  padding: 0 22px 18px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}

/* ══ CTA SECTION ══ */
.gfx-cta-section {
  padding: 100px 0;
  background: #0a0a0a;
}
.gfx-cta-inner {
  background: linear-gradient(
    145deg, #1a1000,
    #3d2800 50%, #1a1000
  );
  border: 1px solid
    rgba(240,180,41,0.2);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gfx-cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(
    circle,
    rgba(240,180,41,0.15),
    transparent 70%
  );
  pointer-events: none;
}
.gfx-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(
    2rem, 5vw, 3rem
  );
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.gfx-cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.gfx-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
}
.btn-wa-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ── Price Grid ── */
.gfx-price-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(0,0,0,0.3);
  border: 1px solid
    rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  position: relative;
}
.gpg-item {
  text-align: center;
  padding: 8px 20px;
}
.gpg-name {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.gpg-price {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}
.gpg-gold { color: #f0b429; }
.gpg-blue { color: #60a5fa; }
.gpg-green { color: #4caf50; }
.gpg-purple { color: #818cf8; }
.gpg-teal { color: #2dd4bf; }
.gpg-orange { color: #fb923c; }
.gpg-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
  .gfx-hero {
    padding: 40px 0 60px;
  }
  .gfx-preview-grid {
    max-width: 400px;
    margin: 40px auto 0;
  }
  .gfx-testi-wrap {
    padding: 36px 20px;
  }
  .gfx-cta-inner {
    padding: 50px 24px;
  }
  .gfx-svc-includes {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .gfx-hero-btns {
    flex-direction: column;
  }
  .btn-gfx-primary,
  .btn-gfx-ghost {
    justify-content: center;
  }
  .gfx-pills { gap: 6px; }
  .gfx-hero-stats { gap: 16px; }
  .gfx-preview-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
  .gfx-cta-btns {
    flex-direction: column;
  }
  .gfx-cta-btns a {
    justify-content: center;
  }
  .gfx-price-grid {
    gap: 0;
    padding: 14px 8px;
  }
  .gpg-item {
    padding: 8px 12px;
  }
  .gpg-div { display: none; }
  .gpg-price { font-size: 1.1rem; }
  .gfx-promise-row { gap: 12px; }
}