/*
 Theme Name: Yes Yes Yes Life
 Theme URI: https://yesyesyeslife.com
 Description: Custom child theme for Yes Yes Yes Life Insurance, built on Hello Elementor.
 Author: mCollinx
 Author URI: https://mcollinx.com
 Template: hello-elementor
 Version: 1.0.0
 Text Domain: yesyesyes-life
*/

/* ===== FONTS ===== */
@import url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/style.css');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --green: #0A6847;
  --green-dark: #064E32;
  --green-light: #0D8A5F;
  --gold: #D4A843;
  --gold-light: #E8C96A;
  --gold-dark: #B8922E;
  --cream: #FDF8F0;
  --warm-white: #FEFCF9;
  --charcoal: #1A1A1A;
  --dark: #111111;
  --dark-gray: #2D2D2D;
  --med-gray: #6B6B6B;
  --light-gray: #E8E4DF;
  --font-display: 'Geist', 'Inter', 'Helvetica Neue', sans-serif;
  --font-heading: 'Geist', 'Inter', 'Helvetica Neue', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Hide Elementor default header/footer on YYY pages */
.yesyesyes-home .site-header,
.yesyesyes-home .site-footer,
.yesyesyes-page .site-header,
.yesyesyes-page .site-footer {
  display: none;
}

/* ===== CONTACT FORM ===== */
.yyy-contact-form input:focus,
.yyy-contact-form select:focus,
.yyy-contact-form textarea:focus {
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(10, 104, 71, 0.1);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== NAVBAR ===== */
.yyy-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 32px;
  transition: all 0.4s ease;
  background: transparent;
}

.yyy-nav.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.yyy-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.yyy-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.yyy-nav .logo-checks {
  display: flex;
  gap: 3px;
}

.yyy-nav .logo-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.yyy-nav .logo-check:nth-child(1),
.yyy-nav .logo-check:nth-child(2) { background: var(--green); }
.yyy-nav .logo-check:nth-child(3) { background: var(--gold); }

.yyy-nav .logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}

.yyy-nav .logo-sub {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.yyy-nav .nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.yyy-nav .nav-links a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  cursor: pointer;
}

.yyy-nav .nav-links a:hover,
.yyy-nav .nav-links a.active {
  color: var(--gold);
}

.yyy-nav .nav-cta {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.2s;
  text-decoration: none;
}

.yyy-nav .nav-cta:hover {
  transform: scale(1.05);
}

/* Mobile menu toggle */
.yyy-nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.yyy-nav .menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.yyy-hero {
  min-height: 100vh;
  background: linear-gradient(165deg, var(--dark) 0%, #0A1F18 40%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}

.yyy-hero .hero-glow-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green) 12%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.yyy-hero .hero-glow-2 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 8%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.yyy-hero .hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.yyy-hero .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.yyy-hero .hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.yyy-hero .hero-text {
  flex: 1 1 500px;
}

.yyy-hero .hero-title {
  font-family: var(--font-display);
  font-size: 66px;
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  margin: 20px 0 0;
  letter-spacing: -0.055em;
}

.yyy-hero .hero-title .highlight {
  color: var(--gold);
}

.yyy-hero .hero-title .gradient-text {
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yyy-hero .hero-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 480px;
  margin: 20px 0 0;
}

.yyy-hero .hero-desc-en {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 480px;
  margin: 12px 0 0;
}

.yyy-hero .hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.yyy-hero .btn-primary {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px 36px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.yyy-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.35);
}

.yyy-hero .btn-secondary {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: border-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.yyy-hero .btn-secondary:hover {
  border-color: var(--gold);
}

/* Hero Stats Card */
.yyy-hero .stats-card {
  flex: 1 1 360px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.yyy-hero .stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s;
}

.yyy-hero .stat-item:last-child {
  border-bottom: none;
}

.yyy-hero .stat-item.active {
  opacity: 1;
  transform: translateX(8px);
}

.yyy-hero .stat-item:not(.active) {
  opacity: 0.5;
}

.yyy-hero .stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  min-width: 120px;
  transition: color 0.5s;
  letter-spacing: -0.04em;
}

.yyy-hero .stat-item.active .stat-num {
  color: var(--gold);
}

.yyy-hero .stat-item:not(.active) .stat-num {
  color: rgba(255, 255, 255, 0.5);
}

.yyy-hero .stat-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
}

/* ===== ABOUT SECTION ===== */
.yyy-about {
  padding: 100px 32px;
  background: var(--cream);
  position: relative;
}

.yyy-about .about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.yyy-about .about-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.yyy-about .about-text {
  flex: 1 1 280px;
}

.yyy-about .section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.yyy-about .about-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.045em;
}

.yyy-about .about-title .green {
  color: var(--green);
}

.yyy-about .about-divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}

.yyy-about .about-desc {
  flex: 1 1 400px;
}

.yyy-about .about-desc p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.yyy-about .about-desc p:first-child {
  color: var(--dark-gray);
}

.yyy-about .about-desc p:last-child {
  color: var(--med-gray);
}

/* About Stats Grid */
.yyy-about .about-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.yyy-about .about-stat-card {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--light-gray);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.yyy-about .about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.yyy-about .about-stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.yyy-about .about-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.04em;
}

.yyy-about .about-stat-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--med-gray);
  letter-spacing: 0.03em;
  margin-top: 4px;
}

/* ===== SERVICES SECTION ===== */
.yyy-services {
  padding: 100px 32px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.yyy-services .services-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--green) 8%, transparent 60%);
  pointer-events: none;
}

.yyy-services .services-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.yyy-services .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.yyy-services .section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.yyy-services .section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.045em;
}

.yyy-services .section-title .highlight {
  color: var(--gold-light);
}

.yyy-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.yyy-services .service-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
  cursor: default;
}

.yyy-services .service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.yyy-services .service-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.yyy-services .service-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.yyy-services .service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

.yyy-services .service-card .service-color-bar {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ===== RECRUITING SECTION ===== */
.yyy-recruiting {
  padding: 100px 32px;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.yyy-recruiting .recruiting-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.yyy-recruiting .recruiting-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.yyy-recruiting .recruiting-left {
  flex: 1 1 380px;
  background: linear-gradient(145deg, var(--charcoal), var(--green-dark));
  border-radius: 24px;
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.yyy-recruiting .recruiting-left .glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.1;
  filter: blur(40px);
  pointer-events: none;
}

.yyy-recruiting .recruiting-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.yyy-recruiting .recruiting-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.045em;
}

.yyy-recruiting .recruiting-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.7;
  margin: 0 0 24px;
}

.yyy-recruiting .recruiting-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yyy-recruiting .recruiting-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
}

.yyy-recruiting .benefit-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Steps */
.yyy-recruiting .recruiting-right {
  flex: 1 1 420px;
}

.yyy-recruiting .steps-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.yyy-recruiting .steps-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 32px;
  letter-spacing: -0.035em;
}

.yyy-recruiting .steps-title .green {
  color: var(--green);
}

.yyy-recruiting .step-card {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.yyy-recruiting .step-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.yyy-recruiting .step-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  min-width: 50px;
  letter-spacing: -0.04em;
}

.yyy-recruiting .step-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

.yyy-recruiting .step-time {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--green);
  background: rgba(10, 104, 71, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-left: 8px;
}

.yyy-recruiting .step-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--med-gray);
  line-height: 1.6;
  margin: 4px 0 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.yyy-testimonials {
  padding: 100px 32px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.yyy-testimonials .testimonials-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, var(--gold) 6%, transparent 50%);
  pointer-events: none;
}

.yyy-testimonials .testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.yyy-testimonials .section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.yyy-testimonials .section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 48px;
  letter-spacing: -0.045em;
}

.yyy-testimonials .section-title .highlight {
  color: var(--gold-light);
}

.yyy-testimonials .testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.yyy-testimonials .testimonial-quote-mark {
  font-size: 48px;
  color: rgba(212, 168, 67, 0.3);
  font-family: var(--font-display);
  position: absolute;
  top: 20px;
  left: 32px;
}

.yyy-testimonials .testimonial-slide {
  position: absolute;
  top: 48px;
  left: 40px;
  right: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
  pointer-events: none;
}

.yyy-testimonials .testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.yyy-testimonials .testimonial-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  font-style: normal;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.yyy-testimonials .testimonial-translation {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin: 0 0 24px;
}

.yyy-testimonials .testimonial-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

.yyy-testimonials .testimonial-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.yyy-testimonials .testimonial-revenue {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(10, 104, 71, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.yyy-testimonials .testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.yyy-testimonials .testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s;
  border: none;
  padding: 0;
}

.yyy-testimonials .testimonial-dot.active {
  width: 32px;
  background: var(--gold);
}

/* ===== CTA SECTION ===== */
.yyy-cta {
  padding: 100px 32px;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.yyy-cta .cta-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.yyy-cta .cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 8%, transparent 60%);
  opacity: 0.15;
  pointer-events: none;
}

.yyy-cta .cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.yyy-cta .cta-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  margin: 16px 0 0;
  letter-spacing: -0.05em;
}

.yyy-cta .cta-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 36px;
}

.yyy-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.yyy-cta .btn-gold {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  background: var(--gold);
  color: var(--charcoal);
  padding: 18px 40px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.25);
  transition: transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.yyy-cta .btn-gold:hover {
  transform: translateY(-2px);
}

.yyy-cta .btn-outline-white {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 18px 36px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.yyy-cta .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== FOOTER ===== */
.yyy-footer {
  padding: 60px 32px 32px;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.yyy-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.yyy-footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.yyy-footer .footer-brand {
  flex: 1 1 280px;
}

.yyy-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.yyy-footer .footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 280px;
}

.yyy-footer .footer-tagline .gold {
  color: var(--gold);
}

.yyy-footer .footer-columns {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.yyy-footer .footer-col-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.yyy-footer .footer-col ul {
  list-style: none;
}

.yyy-footer .footer-col li {
  margin-bottom: 10px;
}

.yyy-footer .footer-col a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.yyy-footer .footer-col a:hover {
  color: #fff;
}

.yyy-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.yyy-footer .footer-copyright {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.yyy-footer .footer-social {
  display: flex;
  gap: 16px;
}

.yyy-footer .footer-social a {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.yyy-footer .footer-social a:hover {
  color: var(--gold);
}

/* ===== RESPONSIVE — TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .yyy-hero .hero-title {
    font-size: 48px;
  }

  .yyy-hero .hero-content {
    gap: 40px;
  }

  .yyy-about .about-title,
  .yyy-services .section-title,
  .yyy-testimonials .section-title,
  .yyy-cta .cta-title {
    font-size: 34px;
  }

  .yyy-hero .hero-glow-1 {
    width: 300px;
    height: 300px;
  }
  .yyy-hero .hero-glow-2 {
    width: 200px;
    height: 200px;
  }
}

/* ===== RESPONSIVE — MOBILE (max-width: 767px) ===== */
@media (max-width: 767px) {
  /* Smooth scrolling */
  html { scroll-behavior: smooth; }

  /* Better tap targets */
  a, button, input, select, textarea {
    min-height: 44px;
  }

  /* Prevent iOS zoom on input focus */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* --- Navbar --- */
  .yyy-nav .nav-links {
    display: none;
  }
  .yyy-nav .nav-cta {
    display: none;
  }
  .yyy-nav .menu-toggle {
    display: block;
  }
  .yyy-nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px 20px;
    gap: 0;
  }
  .yyy-nav.menu-open .nav-links a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  /* --- Hero --- */
  .yyy-hero {
    padding: 110px 16px 48px;
    min-height: auto;
  }
  .yyy-hero .hero-title {
    font-size: 34px;
    line-height: 1.1;
  }
  .yyy-hero .hero-content {
    flex-direction: column;
    gap: 24px;
  }
  .yyy-hero .stats-card {
    flex: 1 1 100%;
    padding: 28px 20px;
  }
  .yyy-hero .stat-num {
    font-size: 32px;
    min-width: 90px;
  }
  .yyy-hero .hero-buttons {
    flex-direction: column;
  }
  .yyy-hero .btn-primary,
  .yyy-hero .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
  .yyy-hero .hero-desc {
    font-size: 16px;
  }

  /* Glow effects: smaller on mobile */
  .yyy-hero .hero-glow-1 {
    width: 200px;
    height: 200px;
    filter: blur(40px);
    top: 5%;
    right: -5%;
  }
  .yyy-hero .hero-glow-2 {
    width: 150px;
    height: 150px;
    filter: blur(30px);
    bottom: 5%;
    left: -5%;
  }
  .yyy-hero .hero-grid {
    display: none; /* Save perf on mobile */
  }
  .yyy-cta .cta-grid {
    background-size: 24px 24px;
  }
  .yyy-cta .cta-glow {
    width: 300px;
    height: 300px;
  }

  /* --- Sections: tighter padding --- */
  .yyy-about,
  .yyy-services,
  .yyy-recruiting,
  .yyy-testimonials,
  .yyy-cta {
    padding: 48px 16px;
  }
  .yyy-footer {
    padding: 48px 16px 24px;
  }

  /* --- Titles smaller --- */
  .yyy-about .about-title,
  .yyy-services .section-title,
  .yyy-testimonials .section-title {
    font-size: 26px;
  }
  .yyy-cta .cta-title {
    font-size: 28px;
  }
  .yyy-recruiting .recruiting-title {
    font-size: 28px;
  }
  .yyy-recruiting .steps-title {
    font-size: 22px;
  }

  /* --- About section --- */
  .yyy-about .about-content {
    flex-direction: column;
    gap: 24px;
  }
  .yyy-about .about-stats {
    flex-direction: column;
    gap: 12px;
  }
  .yyy-about .about-stat-card {
    padding: 24px 16px;
  }
  .yyy-about .about-stat-num {
    font-size: 28px;
  }

  /* --- Services grid --- */
  .yyy-services .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .yyy-services .service-card {
    padding: 24px 20px;
  }

  /* --- Recruiting --- */
  .yyy-recruiting .recruiting-content {
    flex-direction: column;
    gap: 24px;
  }
  .yyy-recruiting .recruiting-left {
    padding: 32px 24px;
  }
  .yyy-recruiting .step-card {
    padding: 16px;
    gap: 14px;
  }
  .yyy-recruiting .step-num {
    font-size: 24px;
    min-width: 36px;
  }

  /* --- Testimonials --- */
  .yyy-testimonials .testimonial-card {
    padding: 28px 20px;
  }
  .yyy-testimonials .testimonial-text {
    font-size: 16px;
  }
  .yyy-testimonials .testimonial-quote-mark {
    font-size: 36px;
    top: 12px;
    left: 16px;
  }

  /* --- CTA buttons stack --- */
  .yyy-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .yyy-cta .btn-gold,
  .yyy-cta .btn-outline-white {
    width: 100%;
    text-align: center;
  }

  /* --- Footer --- */
  .yyy-footer .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .yyy-footer .footer-columns {
    flex-direction: column;
    gap: 24px;
  }
  .yyy-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* --- Contact form --- */
  .yyy-contact-form input,
  .yyy-contact-form select,
  .yyy-contact-form textarea {
    padding: 14px 16px;
  }
}

/* ===== RESPONSIVE — SMALL PHONE (max-width: 390px) ===== */
@media (max-width: 390px) {
  .yyy-hero .hero-title {
    font-size: 28px;
  }
  .yyy-about .about-title,
  .yyy-services .section-title,
  .yyy-testimonials .section-title {
    font-size: 22px;
  }
  .yyy-cta .cta-title {
    font-size: 24px;
  }
  .yyy-hero,
  .yyy-about,
  .yyy-services,
  .yyy-recruiting,
  .yyy-testimonials,
  .yyy-cta,
  .yyy-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  /* Hide glows on very small screens for perf */
  .yyy-hero .hero-glow-1,
  .yyy-hero .hero-glow-2 {
    display: none;
  }
}

/* ===== TOUCH DEVICE IMPROVEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover transforms that "stick" on touch */
  .yyy-services .service-card:hover,
  .yyy-about .about-stat-card:hover,
  .yyy-recruiting .step-card:hover {
    transform: none;
  }
  /* Use active state instead */
  .yyy-services .service-card:active {
    background: rgba(255, 255, 255, 0.06);
  }
  .yyy-about .about-stat-card:active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }
  .yyy-hero .btn-primary:active,
  .yyy-cta .btn-gold:active {
    transform: scale(0.98);
  }
}
