@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* ===== PREMIUM DESIGN TOKENS ===== */
:root {
  /* Brand Colors from GBP */
  --brand-red: #8B1D24;
  --brand-red-dark: #6b151b;
  --brand-red-light: #a3222a;
  
  --brand-blue: #17436B;
  --brand-blue-dark: #0e2d4a;
  --brand-blue-light: #205c93;
  --brand-blue-accent: #17436B;

  --accent-teal: #0E8A8A;
  --accent-orange: #E8891C;
  --accent-green: #2E7A3A;

  /* Neutrals */
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-gray: #F3F4F6;
  
  --text-main: #374151;
  --text-muted: #6B7280;
  --text-dark: #111827;
  
  /* Utilities */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --shadow-sm: 0 1px 3px rgba(17,24,39,0.05), 0 1px 2px rgba(17,24,39,0.025);
  --shadow-md: 0 4px 6px -1px rgba(17,24,39,0.05), 0 2px 4px -1px rgba(17,24,39,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(17,24,39,0.05), 0 4px 6px -2px rgba(17,24,39,0.025);
  --shadow-xl: 0 20px 25px -5px rgba(17,24,39,0.05), 0 10px 10px -5px rgba(17,24,39,0.02);
  --shadow-glow: 0 10px 25px -5px rgba(139,29,36,0.3);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
  font-family: 'Inter', system-ui, -apple-system, sans-serif; 
  color: var(--text-main); 
  line-height: 1.6; 
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }

h1, h2, h3 { 
  font-family: 'Playfair Display', serif; 
  color: var(--text-dark); 
  line-height: 1.15; 
  letter-spacing: -0.01em;
  font-weight: 700;
}
h4, h5, h6 { 
  font-family: 'Poppins', sans-serif; 
  color: var(--text-dark); 
  line-height: 1.2; 
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 700; margin-bottom: 24px; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.subtitle { 
  font-family: 'Inter', sans-serif; 
  font-size: 0.85rem; 
  font-weight: 700; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  color: #555; 
  margin-bottom: 12px; 
}
.lead { font-size: 1.15rem; color: var(--text-main); line-height: 1.7; margin-bottom: 24px; }

/* ===== LAYOUT & UTILS ===== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }

/* Color classes for icons */
.text-blue { color: var(--brand-blue); }
.bg-blue-light { background-color: rgba(23,67,107,0.1); }
.text-teal { color: var(--accent-teal); }
.bg-teal-light { background-color: rgba(14,138,138,0.1); }
.text-red { color: var(--brand-red); }
.bg-red-light { background-color: rgba(139,29,36,0.1); }

/* ===== BUTTONS ===== */
.btn { 
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; 
  padding: 12px 28px; border-radius: var(--radius-sm); 
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem; 
  transition: all var(--transition-normal); border: 2px solid transparent; 
  cursor: pointer;
}
.btn--lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-primary { background-color: var(--brand-blue); color: var(--bg-white); }
.btn-primary:hover { background-color: var(--brand-blue-dark); transform: translateY(-2px); }
.btn-primary.shadow-glow:hover { box-shadow: 0 10px 25px -5px rgba(23,67,107,0.4); }
.btn-primary.btn--outline { background-color: transparent; border-color: var(--brand-blue); color: var(--brand-blue); }
.btn-primary.btn--outline:hover { background-color: var(--brand-blue); color: var(--bg-white); }
.btn-outline-dark { background-color: transparent; border-color: var(--text-dark); color: var(--text-dark); }
.btn-outline-dark:hover { background-color: var(--text-dark); color: var(--bg-white); }
.btn-outline-white { background-color: transparent; border-color: rgba(255,255,255,0.5); color: var(--bg-white); }
.btn-outline-white:hover { border-color: var(--bg-white); background-color: rgba(255,255,255,0.1); }
.btn-white { background-color: var(--bg-white); color: var(--brand-blue-dark); box-shadow: var(--shadow-md); border-radius: 50px; font-weight: 700; padding: 18px 42px; font-size: 1.05rem; }
.btn-white:hover { background-color: var(--bg-gray); transform: translateY(-3px); box-shadow: 0 12px 30px -5px rgba(255,255,255,0.3); }
.btn svg, .btn i { transition: transform var(--transition-normal); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

/* ===== TOP BAR ===== */
.top-bar { display: none; }
.top-bar__inner { display: flex; align-items: center; justify-content: space-between; }
.top-bar__inner span { color: var(--bg-white); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.5px; }
.top-bar__link { 
  background-color: var(--brand-blue-accent); color: var(--bg-white); 
  padding: 8px 20px; border-radius: var(--radius-sm); 
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem; 
  transition: background-color var(--transition-fast);
}
.top-bar__link:hover { background-color: var(--brand-blue-light); }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all var(--transition-normal); background: var(--bg-white); border-bottom: 1px solid var(--bg-gray); }
.header--top { padding: 22px 0; }
.header--scrolled { padding: 12px 0; box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 62px; transition: height var(--transition-normal); }
.header--scrolled .header__logo img { height: 46px; }
.header__nav { display: flex; align-items: center; gap: 36px; }
.header__link { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text-main); position: relative; padding: 5px 0; }
.header__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--brand-blue-accent); transition: width var(--transition-normal); }
.header__link:hover { color: var(--brand-blue-accent); }
.header__link:hover::after { width: 100%; }
.header__cta { padding: 10px 24px; font-size: 0.9rem; border-radius: var(--radius-sm); }

/* Mobile Burger */
.header__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; }
.header__burger span { width: 24px; height: 2px; background-color: var(--text-dark); transition: var(--transition-normal); }
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; max-width: 320px; height: 100vh; background-color: var(--bg-white); padding: 100px 32px 40px; transition: right var(--transition-normal); z-index: 999; box-shadow: var(--shadow-xl); }
.mobile-nav.active { right: 0; }
.mobile-nav__overlay { position: fixed; inset: 0; background: rgba(17,24,39,0.4); opacity: 0; pointer-events: none; transition: opacity var(--transition-normal); z-index: 998; backdrop-filter: blur(4px); }
.mobile-nav__overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav a:not(.btn) { display: block; padding: 16px 0; color: var(--text-dark); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--bg-gray); }
.mobile-nav .btn { margin-top: 32px; width: 100%; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; min-height: 600px; display: flex; align-items: center; padding: 10% 0 5%; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,45,74,0.92) 0%, rgba(14,45,74,0.75) 50%, rgba(14,45,74,0.3) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; max-width: 800px; text-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.hero__eyebrow { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.9rem; color: #ffebed; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; display: inline-block; padding: 6px 12px; background: rgba(139,29,36,0.8); border-radius: 4px; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.1); }
.hero h1 { color: var(--bg-white); margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.title-line { display: block; line-height: 1.05; }
.title-line--large { font-size: clamp(2.8rem, 4vw, 3.8rem); font-weight: 800; letter-spacing: -0.01em; }
.title-line--medium { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; opacity: 0.85; margin-top: 4px; }
.text-red { color: #ff525e; }
.hero__sub { font-size: 1.25rem; font-weight: 400; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 580px; line-height: 1.7; border-left: 3px solid #ff525e; padding-left: 24px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__floating-card { display: none; }

/* ===== ADVANTAGE (Why Work With Us) ===== */
.advantage { background-color: var(--bg-white); }
.advantage__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.advantage__image-frame { position: relative; }
.advantage__image-frame .main-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.advantage__image-badge { position: absolute; bottom: 30px; right: -30px; background: var(--brand-blue); color: var(--bg-white); padding: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); display: flex; align-items: flex-start; gap: 16px; max-width: 280px; }
.badge-icon { background: rgba(255,255,255,0.2); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-orange); font-size: 1.2rem; flex-shrink: 0; }
.badge-content .number { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.badge-content .text { font-size: 0.9rem; font-weight: 500; opacity: 0.9; line-height: 1.4; }

.advantage__list { margin: 40px 0; display: flex; flex-direction: column; gap: 24px; }
.advantage__item { display: flex; gap: 20px; align-items: flex-start; }
.advantage__item-icon { width: 48px; height: 48px; border-radius: 12px; background-color: var(--bg-light); color: var(--brand-red); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; border: 1px solid var(--bg-gray); }
.advantage__item-text h4 { margin-bottom: 6px; color: var(--text-dark); }
.advantage__item-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ===== BRANDS ===== */
.brands { background-color: var(--bg-white); padding: 80px 0 100px; border-top: 1px solid var(--bg-gray); }
.brands__inner { display: flex; flex-direction: column; align-items: center; }
.brands__header { text-align: center; margin-bottom: 48px; }
.brands__wrapper { width: 100%; margin-bottom: 48px; padding: 20px 0; }
.brands__logos { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; }
.brands__logos img { max-height: 60px; max-width: 160px; height: auto; width: auto; object-fit: contain; transition: all var(--transition-normal); cursor: pointer; }
.brands__logos img:hover { transform: scale(1.08); }

/* ===== WHAT MAKES US UNIQUE ===== */
.value-props__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { background: var(--bg-white); border-radius: var(--radius-md); padding: 40px 32px; transition: all var(--transition-normal); border: 1px solid var(--bg-gray); position: relative; overflow: hidden; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--brand-red), var(--brand-blue)); opacity: 0; transition: opacity var(--transition-normal); }
.value-card:hover::after { opacity: 1; }
.value-card__header { margin-bottom: 20px; }
.value-card__icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 24px; }
.value-card h3 { font-size: 1.25rem; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== POLL / SURVEY ===== */
.poll { background-color: var(--bg-white); }
.poll .intro-text { max-width: 800px; margin: 0 auto; color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; }
.poll__wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 64px; }

/* Stats Circular Charts */
.poll__stats-grid { display: flex; flex-direction: column; gap: 32px; }
.poll__stat-box { display: flex; align-items: center; gap: 24px; background: var(--bg-light); padding: 24px 32px; border-radius: var(--radius-md); border: 1px solid var(--bg-gray); transition: transform var(--transition-normal), box-shadow var(--transition-normal); }
.poll__stat-box:hover { transform: translateX(8px); box-shadow: var(--shadow-md); background: var(--bg-white); }
.stat-circle { width: 90px; height: 90px; flex-shrink: 0; }
.circular-chart { display: block; margin: 0 auto; max-width: 100%; max-height: 250px; }
.circle-bg { fill: none; stroke: var(--bg-gray); stroke-width: 2.5; }
.circle { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke: var(--brand-red); animation: progress 2s ease-out forwards; }
.percentage { fill: var(--text-dark); font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.5rem; text-anchor: middle; }
@keyframes progress { 0% { stroke-dasharray: 0 100; } }
.poll__stat-box p { font-size: 1.05rem; font-weight: 500; color: var(--text-main); line-height: 1.5; }

/* Survey Bars */
.poll__survey-box { background: var(--bg-white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--bg-gray); }
.survey-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.survey-header h3 { font-size: 1.5rem; max-width: 300px; }
.survey-icon { width: 56px; height: 56px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-red); font-size: 1.4rem; }

.poll__bar { margin-bottom: 28px; }
.poll__bar:last-child { margin-bottom: 0; }
.poll__bar-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.poll__bar-name { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.poll__bar-pct { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--brand-red); }
.poll__bar-track { height: 8px; background: var(--bg-gray); border-radius: 4px; overflow: hidden; }
.poll__bar-fill { height: 100%; background: linear-gradient(90deg, var(--brand-red-light), var(--brand-red)); border-radius: 4px; transform: scaleX(0); transform-origin: left; transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials__carousel { position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden; padding-bottom: 60px; }
.testimonials__track { display: flex; gap: 32px; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.testimonial-card { flex: 0 0 calc(33.333% - 21.33px); min-width: calc(33.333% - 21.33px); box-sizing: border-box; background: var(--bg-white); border-radius: var(--radius-lg); padding: 40px 32px; position: relative; border: 1px solid var(--bg-gray); display: flex; flex-direction: column; align-items: center; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); color: rgba(139,29,36,0.05); font-size: 5rem; z-index: 0; pointer-events: none; }
.testimonial-card__stars { color: var(--accent-orange); font-size: 1rem; margin-bottom: 20px; display: flex; gap: 4px; justify-content: center; position: relative; z-index: 1; }
.testimonial-card__text { font-size: 0.95rem; color: var(--text-dark); font-style: italic; line-height: 1.7; margin-bottom: 32px; position: relative; z-index: 1; font-weight: 500; }
.testimonial-card__author { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: auto; position: relative; z-index: 1; }
.testimonial-card__avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark)); color: var(--bg-white); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; box-shadow: var(--shadow-md); }
.testimonial-card__name { font-weight: 700; color: var(--text-dark); font-size: 1rem; }
.testimonial-card__role { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Carousel Controls */
.carousel-dots { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: center; gap: 12px; }
.carousel-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--bg-gray); border: none; cursor: pointer; transition: all var(--transition-fast); }
.carousel-dot:hover { background: var(--brand-red-light); }
.carousel-dot.active { background: var(--brand-red); transform: scale(1.3); }

/* ===== CONTACT SECTION ===== */
.contact-section { 
  padding: 100px 0; 
  position: relative; 
  background-color: #17436B; 
  overflow: hidden; 
}
.contact-section__bg { 
  position: absolute; 
  inset: 0; 
  z-index: 0; 
  opacity: 0.15; 
}
.contact-section__bg img { 
  width: 100%; 
  height: 100% !important; 
  max-width: none;
  object-fit: cover; 
}
.contact-section__overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(135deg, rgba(23,67,107,0.95) 0%, rgba(14,45,74,0.95) 100%); 
  z-index: 1; 
}
.contact-section__container { 
  position: relative; 
  z-index: 2; 
  display: grid; 
  grid-template-columns: 1fr 1.3fr; 
  gap: 64px; 
  align-items: center; 
}

/* Left Column Styling */
.contact-section__content { 
  color: #fff; 
}
.contact-section__eyebrow { 
  font-family: 'Inter', sans-serif; 
  font-weight: 700; 
  font-size: 0.9rem; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  color: #ff525e; 
  display: block; 
  margin-bottom: 12px; 
}
.contact-section__title { 
  color: #fff !important; 
  font-size: clamp(2.2rem, 3.5vw, 3rem); 
  font-weight: 800; 
  line-height: 1.15; 
  margin-bottom: 24px; 
}
.contact-section__text { 
  font-size: 1.1rem; 
  color: rgba(255, 255, 255, 0.9); 
  line-height: 1.6; 
  max-width: 480px; 
}

/* Right Column Form Styling */
.contact-form__grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 16px; 
}
.contact-form__col { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}
.contact-form__group { 
  position: relative; 
}
.contact-form__group--textarea { 
  display: flex; 
}
.contact-form__input { 
  width: 100%; 
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.2); 
  border: 1px solid rgba(255, 255, 255, 0.3); 
  border-radius: 6px; 
  padding: 14px 18px; 
  color: #fff; 
  font-family: 'Inter', sans-serif; 
  font-size: 0.95rem; 
  transition: all 0.2s ease; 
  outline: none; 
  box-sizing: border-box;
}
.contact-form__input::placeholder { 
  color: rgba(255, 255, 255, 0.65); 
}
.contact-form__input:focus { 
  background: rgba(255, 255, 255, 0.3); 
  border-color: rgba(255, 255, 255, 0.7); 
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1); 
}

/* Textarea */
.contact-form__textarea { 
  resize: none; 
}

/* Select dropdown */
.contact-form__select { 
  cursor: pointer; 
  color: rgba(255, 255, 255, 0.65); 
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form__select option { 
  background-color: #0e2d4a; 
  color: #fff; 
}
.contact-form__select:focus, 
.contact-form__select:valid { 
  color: #fff; 
}

/* Footer of the Form */
.contact-form__footer { 
  display: grid; 
  grid-template-columns: 1.3fr auto; 
  gap: 16px; 
  margin-top: 16px; 
  align-items: stretch; 
}
.contact-form__submit { 
  background-color: #8B1D24; 
  color: #fff; 
  font-weight: 700; 
  padding: 14px 36px; 
  font-size: 1rem; 
  border-radius: 6px; 
  border: none; 
  cursor: pointer; 
  transition: all 0.3s ease; 
  white-space: nowrap;
}
.contact-form__submit:hover { 
  background-color: #6b151b; 
  transform: translateY(-2px); 
  box-shadow: 0 10px 25px -5px rgba(139,29,36,0.4); 
}

/* ===== FOOTER ===== */
.footer { background-color: #111827; color: var(--bg-white); padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__logo img { height: 60px; margin-bottom: 24px; background-color: var(--bg-white); padding: 8px 12px; border-radius: var(--radius-sm); }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all var(--transition-normal); color: var(--bg-white); font-size: 1.1rem; }
.footer__social a:hover { background: var(--brand-red); transform: translateY(-3px); }

.footer__heading { color: var(--bg-white); font-size: 1.1rem; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer__heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--brand-red); }

.footer__links a { display: block; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: all var(--transition-fast); font-size: 0.95rem; }
.footer__links a:hover { color: var(--bg-white); transform: translateX(5px); }

.footer__contact a { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; color: rgba(255,255,255,0.6); transition: color var(--transition-fast); }
.footer__contact a:hover { color: var(--bg-white); }
.contact-icon { width: 24px; height: 24px; background: rgba(139,29,36,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--brand-red-light); flex-shrink: 0; margin-top: 2px; }
.footer__contact strong { color: var(--bg-white); font-size: 1.1rem; font-family: 'Poppins', sans-serif; display: block; margin-top: 4px; }
.email-link span { margin-top: 2px; }

.footer__bottom { padding: 24px 0; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.footer__bottom a { color: rgba(255,255,255,0.6); font-weight: 500; }
.footer__bottom a:hover { color: var(--bg-white); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { min-height: 500px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(14,45,74,0.92) 0%, rgba(14,45,74,0.8) 100%); }
  .advantage__grid { grid-template-columns: 1fr; gap: 48px; }
  .advantage__image-frame { max-width: 600px; margin: 0 auto; }
  .advantage__image-badge { right: -10px; bottom: 20px; }
  .value-props__grid { grid-template-columns: repeat(2, 1fr); }
  .poll__wrapper { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-card { flex: 0 0 calc(50% - 16px); min-width: calc(50% - 16px); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-section__container { grid-template-columns: 1fr; gap: 40px; }
  .contact-section__content { text-align: center; }
  .contact-section__text { margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .header--top { padding: 16px 0; }
  .header__logo img { height: 52px; }
  .header--scrolled .header__logo img { height: 42px; }
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .top-bar__inner { flex-direction: column; gap: 12px; }
  .value-props__grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; min-width: 100%; }
  .poll__survey-box { padding: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .btn--lg { width: 100%; }
  .contact-form__grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-form__col { gap: 16px; }
  .contact-form__footer { grid-template-columns: 1fr; gap: 16px; }
  .contact-form__textarea { min-height: 120px; }
}
