:root {
  --yellow: #ffd600;
  --yellow-soft: #fff4b8;
  --black: #070707;
  --black-soft: #111111;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-500: #707070;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Reset & base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--black);
  color: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1.25rem;
}

p {
  margin-top: 0;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
  background: var(--black);
  color: var(--white);
}

.section-alt {
  background: #080808;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-500);
}

/* Header */

.header is sticky at top
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

/* Header logo ONLY */
.header .brand .header-logo {
  height: 40pxpx;
  width: auto;
  display: block;
}

/* Ensure header alignment */
.header-inner {
  display: flex;
  align-items: center;
}
}

/* Nav */

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--gray-500);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--yellow);
  width: 0;
  bottom: -6px;
  left: 0;
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after {
  width: 100%;
}

/* Buttons */

.btn {
  background: var(--yellow);
  border-radius: 999px;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  color: var(--black);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  background: #ffe347;
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--yellow);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.full-width {
  width: 100%;
}

/* Nav Toggle (mobile) */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

/* Hero */

.hero {
  padding: 5.5rem 0 4.5rem;
  background: radial-gradient(circle at top left, #2a2205, #070707 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--yellow-soft);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--yellow);
}

.hero-subtext {
  color: var(--gray-500);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.hero-badges span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.7rem;
}

/* Hero visual */

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: linear-gradient(135deg, #121212, #1c1606);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-label {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.hero-card-number {
  font-size: 1.8rem;
  margin: 0.3rem 0;
  font-weight: 600;
}

.hero-card-sub {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.hero-chart {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  height: 120px;
}

.hero-chart .bar {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(to top, #534200, #ffd600);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.8;
}

.bar-1 {
  height: 30%;
}

.bar-2 {
  height: 50%;
}

.bar-3 {
  height: 75%;
}

.bar-4 {
  height: 100%;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Grid utilities */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Cards */

.card {
  background: #101010;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card h3,
.portfolio-card h3,
.pricing-card h3 {
  margin-top: 0;
}

/* Lists */

.list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
}

.list li {
  font-size: 0.88rem;
  color: var(--gray-500);
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.list li::before {
  content: "•";
  color: var(--yellow);
}

/* Pills */

.pill-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.pill-list li {
  display: inline-flex;
  margin: 0 0.5rem 0.5rem 0;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Stats card */

.stats-card {
  background: radial-gradient(circle at top, #2c2304, #101010);
}

.stats-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 600;
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-step {
  background: #101010;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.76rem;
  margin-bottom: 0.5rem;
  color: var(--yellow);
}

/* Portfolio */

.portfolio-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.7rem;
}

/* Pricing */

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
}

.pricing-card-featured {
  background: linear-gradient(170deg, #221a03, #101010);
  border-color: var(--yellow-soft);
  transform: translateY(-8px);
}

.pricing-card-featured .pricing-price {
  color: var(--yellow-soft);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
  background: var(--yellow);
  color: var(--black);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-price {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Testimonials */

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--gray-100);
}

.testimonial-author {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form-card {
  background: #101010;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.field label {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.field input,
.field select,
.field textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #070707;
  padding: 0.6rem 0.75rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid var(--yellow);
  border-color: var(--yellow);
}

.field textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.contact-meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-right a {
  color: var(--gray-500);
}

.footer-right a:hover {
  color: var(--yellow);
}

/* Animations */

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 840px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .nav {
    position: absolute;
    inset: 56px 0 auto 0;
    background: rgba(7, 7, 7, 0.98);
    padding: 0.75rem 1.25rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .grid-3,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Header Logo */
.brand-logo {
  height: 50px;          
  width: auto;
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
}
/* Floating Google Meet Button */
.floating-meet {
  position: fixed;
  right: 18px;
  bottom: 100px;
  width: 56px;
  height: 56px;
  background: #FFC300;
  color: #000;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 9999;
  transition: transform 0.25s ease;
}

.floating-meet:hover {
  transform: scale(1.1);
}

/* ✅ Mobile responsiveness */
@media (max-width: 768px) {
  .floating-meet {
    width: 48px;
    height: 48px;
    font-size: 22px;
    right: 14px;
    bottom: 80px; /* avoids mobile browser UI */
  }
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFC300;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: #e6b000;
}

/* Center on mobile */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

