/* ============================================================
   RAMSEY POWER CORPORATION — Global Stylesheet
   Colors: Yellow #FFE600 | Red #CC1C1C | Blue #2B56D6 (accent)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ---- Custom Properties ---- */
:root {
  --yellow:       #FFE600;
  --yellow-dark:  #D4BF00;
  --yellow-pale:  rgba(255, 230, 0, 0.12);
  --blue:         #2B56D6;
  --blue-dark:    #1E3EA8;
  --blue-light:   #4F77EA;
  --red:          #CC1C1C;
  --red-dark:     #A51616;
  --red-pale:     rgba(204, 28, 28, 0.08);
  --dark:         #1A1A2E;
  --dark-alt:     #12122B;
  --white:        #FFFFFF;
  --cream:        #FFFDF0;
  --gray-50:      #F9F9F5;
  --gray-100:     #F3F3EE;
  --gray-200:     #E5E5DC;
  --gray-400:     #9CA3AF;
  --gray-600:     #6B7280;
  --gray-800:     #374151;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --shadow-sm:     0 2px 8px rgba(26, 26, 46, 0.07);
  --shadow-md:     0 6px 24px rgba(26, 26, 46, 0.12);
  --shadow-lg:     0 12px 48px rgba(26, 26, 46, 0.16);
  --shadow-yellow: 0 6px 24px rgba(255, 230, 0, 0.35);
  --shadow-red:    0 6px 24px rgba(204, 28, 28, 0.35);

  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.25s ease;

  --container: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ---- Layout Helpers ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-pad { padding: 5rem 1.5rem; }
.section-pad-sm { padding: 3.5rem 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}

.btn-secondary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-secondary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.075rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 54px;
  width: 54px;
  object-fit: contain;
  border-radius: 50%;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}
.nav-logo-text .name {
  font-size: 1.1rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.nav-logo-text .tagline {
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(204, 28, 28, 0.07);
}
.nav-links .nav-cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.mobile-menu a:hover {
  color: var(--yellow);
}
.mobile-menu .mobile-cta {
  margin-top: 0.5rem;
  font-size: 1.25rem !important;
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.8;
  transition: var(--transition);
}
.mobile-close:hover { opacity: 1; color: var(--yellow); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--blue);
  overflow: hidden;
  padding: 6rem 1.5rem 5rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 35%, rgba(79, 119, 234, 0.22) 0%, transparent 62%);
  pointer-events: none;
}

.hero-bolt {
  position: absolute;
  right: clamp(0.75rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(140px, 20vw, 280px);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}
.hero-bolt img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.3) brightness(0.95);
  mix-blend-mode: darken;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow-pale);
  border: 1px solid rgba(255, 230, 0, 0.3);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.6s ease forwards;
}
.inline-logo-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  vertical-align: -0.18em;
  margin-right: 0.4rem;
}
.hero-badge .inline-logo-icon {
  width: 16px;
  height: 16px;
  margin-right: 0;
}
.section-header h2 .inline-logo-icon,
.cta-banner h2 .inline-logo-icon,
.form-card-header h2 .inline-logo-icon {
  width: 22px;
  height: 22px;
  vertical-align: -0.12em;
}
.btn .inline-logo-icon {
  width: 16px;
  height: 16px;
  vertical-align: -0.1em;
}
.trust-badge-icon .inline-logo-icon {
  width: 16px;
  height: 16px;
  vertical-align: -0.08em;
  margin-right: 0;
}

.hero h1 {
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 .highlight {
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.375rem;
  display: block;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-pale);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.section-header p {
  color: var(--gray-600);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.025rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: var(--red-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--red);
  transform: scale(1.05);
}
.service-logo-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.625rem;
}
.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  padding: 5rem 1.5rem;
  background: var(--dark);
}

.why .section-label {
  color: var(--yellow);
  background: rgba(255, 230, 0, 0.1);
}
.why .section-header h2 { color: var(--white); }
.why .section-header p { color: rgba(255, 255, 255, 0.6); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255, 230, 0, 0.05);
  border-color: rgba(255, 230, 0, 0.25);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 0.625rem;
}
.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--yellow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--yellow);
  opacity: 0.18;
  line-height: 1;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-text {
  color: var(--gray-800);
  font-size: 0.975rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

.review-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.review-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.review-link-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 5.5rem 1.5rem;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  height: 170px;
  background: url('/RAMSEY~1.JPG') center / contain no-repeat;
  opacity: 0.12;
  filter: grayscale(1) contrast(1.3) brightness(0.95);
  mix-blend-mode: darken;
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-alt);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.footer-logo-name small {
  display: block;
  font-size: 0.7rem;
  color: var(--yellow);
  letter-spacing: 0.12em;
  margin-top: 2px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.625rem;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--yellow);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(204, 28, 28, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.page-hero h1 .highlight { color: var(--yellow); }
.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 1.25rem auto 0;
  font-size: 1.025rem;
  line-height: 1.75;
}

/* ============================================================
   FORM STYLES (Request Service)
   ============================================================ */
.form-section {
  padding: 5rem 1.5rem;
  background: var(--cream);
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
}
.form-card-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-100);
}
.form-card-header h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--dark);
}
.form-card-header p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-top: 0.375rem;
}
.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark);
}
.form-group .optional {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.975rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 28, 28, 0.1);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

/* Success message */
.success-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  font-size: 4rem;
  margin-bottom: 1.25rem;
  display: block;
}
.success-message h3 {
  font-size: 1.75rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.success-message p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   PAY INVOICE
   ============================================================ */
.pay-section {
  padding: 5rem 1.5rem;
  background: var(--cream);
}
.pay-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 580px;
  margin: 0 auto;
}
.pay-intro {
  color: var(--gray-600);
  font-size: 0.975rem;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid var(--gray-100);
}
.amount-preview {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.amount-preview-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.375rem;
}
.amount-preview-value {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.amount-preview-value sup {
  font-size: 1.5rem;
  vertical-align: top;
  line-height: 1.4;
}

.card-element-wrapper {
  padding: 0.875rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  margin-bottom: 0.375rem;
}
.card-element-wrapper.focused {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 28, 28, 0.1);
}
#card-errors {
  color: var(--red);
  font-size: 0.85rem;
  min-height: 1.25rem;
  margin-bottom: 0.5rem;
}

.pay-btn {
  width: 100%;
  font-size: 1.05rem;
  margin-top: 1rem;
  padding: 1.1rem;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
}
.trust-badge-icon {
  font-size: 1.1rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.story-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-content .section-label { margin-bottom: 1.25rem; }
.story-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.story-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.story-content p:last-child { margin-bottom: 0; }

.story-visual {
  position: relative;
}
.story-visual-box {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.story-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(204, 28, 28, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.story-big-bolt {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.story-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.story-visual-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.story-visual-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.375rem;
  display: block;
}

.team-section {
  padding: 5rem 1.5rem;
  background: var(--cream);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-bottom-color: var(--yellow);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.team-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  display: block;
}
.team-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

.values-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.value-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.value-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--yellow);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.875rem;
  display: block;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 0.625rem;
}
.value-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 4rem 1.25rem 3.5rem;
    min-height: auto;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-top: 3rem;
  }
  .hero-bolt { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-card, .pay-card { padding: 2rem 1.25rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .review-links { flex-direction: column; align-items: center; }
}
