/* G2 Graphics Service — cPanel static (5 HTML pages)
   Premium light “print studio” look with glass-morphism.
*/

:root {
  --bg: #fbfaf8;
  --card: rgba(255, 255, 255, 0.72);
  --border: rgba(15, 23, 42, 0.10);
  --text: #0b0f14;
  --muted: rgba(11, 15, 20, 0.62);
  --accent: #c46a2a;
  --teal: #0f766e;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% 0%, rgba(196, 106, 42, 0.10), transparent 55%),
    radial-gradient(900px 500px at 90% 15%, rgba(15, 118, 110, 0.10), transparent 60%),
    var(--bg);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: "Fraunces", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing: -0.02em;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  background: var(--accent);
  right: -6px;
  bottom: -6px;
  box-shadow: 0 10px 20px rgba(196, 106, 42, 0.25);
}

.brand-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

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

.nav a {
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
  transition: background-color .18s ease, color .18s ease;
}

.nav a:hover {
  background: rgba(11, 15, 20, 0.05);
  color: var(--text);
}

.nav a.active {
  background: rgba(11, 15, 20, 0.06);
  color: var(--text);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone {
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
  transition: color .18s ease;
}

.phone:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--text);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
  box-shadow: 0 10px 26px rgba(11, 15, 20, 0.18);
}

.btn:hover {
  background: rgba(11, 15, 20, 0.92);
  transform: translateY(-1px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn.outline {
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.btn.outline:hover {
  background: rgba(11, 15, 20, 0.05);
}

/* Layout blocks */
.section {
  padding: 42px 0;
}

.hero {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  position: relative;
}

.hero::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.75), rgba(255,255,255,0.22));
}

.hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 26px;
  padding: 44px;
}

.kickers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  color: rgba(11, 15, 20, 0.66);
}

.pill.dark {
  background: var(--text);
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

.hero h1 {
  margin: 16px 0 0;
  font-size: 52px;
  line-height: 1.02;
}

.hero p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
  max-width: 620px;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.64);
  padding: 14px;
  transition: box-shadow .18s ease;
}

.stat:hover { box-shadow: var(--shadow-sm); }

.stat .value {
  font-weight: 800;
  font-size: 20px;
}

.stat .label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}

.card.pad { padding: 18px; }

.card-title {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.feature-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.74);
  display: grid;
  place-items: center;
}

.icon.teal { color: var(--teal); }
.icon.accent { color: var(--accent); }

.feature .t {
  font-size: 13px;
  font-weight: 800;
}

.feature .d {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.grid-3 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.section-title {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.section-title h2 {
  margin: 0;
  font-size: 34px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 800;
  color: rgba(11, 15, 20, 0.70);
}

.service {
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service h3 {
  margin: 0;
  font-size: 18px;
}

.service p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(11, 15, 20, 0.78);
  line-height: 1.65;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.dark-panel {
  border: 1px solid rgba(255,255,255,0.12);
  background: #0b0f14;
  color: #fff;
  border-radius: 26px;
  padding: 22px;
}

.dark-panel p {
  color: rgba(255,255,255,0.72);
  margin: 10px 0 0;
  line-height: 1.65;
  font-size: 14px;
}

/* Forms */
.form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  font-size: 13px;
  font-weight: 800;
}

.label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

input, textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.78);
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus, textarea:focus {
  border-color: rgba(196, 106, 42, 0.55);
  box-shadow: 0 0 0 4px rgba(196, 106, 42, 0.15);
}

textarea { min-height: 140px; resize: vertical; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.small-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.notice {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.66);
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Toast */
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  max-width: 420px;
  border-radius: 18px;
  padding: 14px 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast .t {
  font-weight: 900;
  font-size: 13px;
}

.toast .d {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.toast.success { border-color: rgba(15, 118, 110, 0.28); }
.toast.error { border-color: rgba(196, 106, 42, 0.36); }

/* Footer */
.footer {
  margin-top: 56px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer-inner {
  padding: 34px 0;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 1fr 0.8fr;
}

.footer h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.footer p, .footer a, .footer div {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer a:hover { color: var(--text); }

.f-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mini {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.66);
  font-size: 12px;
  font-weight: 800;
  color: rgba(11, 15, 20, 0.70);
}

.copyright {
  margin-top: 16px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 28px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .header-cta .phone { display: none; }
  .hero h1 { font-size: 40px; }
  .stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
