/*
Theme Name: Royal Marketing Digital
Theme URI: https://royalmarketingdigital.com
Author: Royal Marketing Digital
Author URI: https://royalmarketingdigital.com
Description: Tema customizado para Royal Marketing Digital - Assessoria de Marketing & Vendas
Version: 1.0.0
License: GNU General Public License v2 later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: royal-theme
Tags: marketing, digital, business, custom
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background: white;
}

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

/* Header */
.header {
  background: #0a1f3d;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-img {
  height: 35px;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav a.active, 
.nav a:hover:not(.btn-contato) {
    color: #00e5ff !important;
    font-weight: 700;
}

.btn-contato {
    background: linear-gradient(90deg, #0091d5 0%, #00e5ff 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: opacity 0.3s, transform 0.2s;
    border: none;
}

.btn-contato:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: white !important;
}

/* Hero Main Section */
.hero-main {
  background: linear-gradient(to bottom, #f5f7fa 0%, #ffffff 100%);
  padding: 60px 0 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  padding-top: 30px;
}

.hero-text {
  position: relative;
  z-index: 1;
}

/* ===== ROYAL SLIDE ANIMATION SYSTEM CORRIGIDO ===== */
.royal-slide-container {
  position: relative;
  min-height: 320px;
  margin-bottom: 20px;
}

.royal-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.royal-slide-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  transform: scale(1);
}

/* EFEITO DE SAÍDA: O slide antigo diminui até 1/3 do tamanho antes de sumir */
.royal-slide-leaving {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  z-index: 3 !important;
  transform: scale(0.6) translateY(40px) !important;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

/* Após encolher, desaparece */
.royal-slide-leaving.fade-out {
  opacity: 0 !important;
}



/* Elementos filhos - estado inicial (Preparados para o impacto) */
.royal-slide:not(.royal-slide-visible):not(.royal-slide-leaving) .royal-slide-title,
.royal-slide:not(.royal-slide-visible):not(.royal-slide-leaving) .royal-slide-subtitle {
  opacity: 0;
  transform: scale(2.5);
  filter: blur(10px);
}

.royal-slide:not(.royal-slide-visible):not(.royal-slide-leaving) .royal-slide-description {
  opacity: 0;
  transform: translateY(20px);
}

/* Quando o slide ganha a classe visible via JS */
.royal-slide.royal-slide-visible .royal-slide-title,
.royal-slide.royal-slide-visible .royal-slide-subtitle {
  opacity: 0;
  animation: royalImpact 0.8s cubic-bezier(0.17, 0.88, 0.32, 1.25) forwards;
}

.royal-slide.royal-slide-visible .royal-slide-description {
  opacity: 0;
  animation: royalFadeInUp 0.6s ease 0.4s forwards;
}

/* ANIMAÇÃO DE IMPACTO (Zoom de grande para real) */
@keyframes royalImpact {
  0% {
    opacity: 0;
    transform: scale(2.5);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes royalFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos de Tipografia */
.royal-slide-title {
  font-size: 40px;
  font-weight: 900;
  color: #0a1f3d;
  line-height: 1.2;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.royal-slide-subtitle {
  font-size: 22px;
  color: #00d4ff;
  font-weight: 400;
  line-height: 1.4;
  text-transform: lowercase;
}

.royal-slide-description {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  margin-top: 20px;
}
/* ===== FIM ROYAL SLIDE SYSTEM ===== */

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Stats Section */
.stats {
    background-color: #0a1f3d;
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: -120px auto 0;
    padding: 0 20px;
}

.stat-box {
    background: linear-gradient(180deg, #42f2e3 0%, #00d4ff 45%, #0076ff 100%);
    padding: 40px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
}

.stat-number {
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: lowercase;
    line-height: 1.2;
}

.stat-box p {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.9;
}

/* Evolution Section */
.evolution-section {
  padding: 80px 0 40px;
  background: white;
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  color: #0a1f3d;
  line-height: 1.3;
}

.section-title.center {
  text-align: center;
}

.section-title.green {
  color: #00d4ff;
}

.section-title .green {
  color: #00d4ff;
}

.divider {
  width: 500px;
  height: 1px;
  background: linear-gradient(to right, transparent, #00d4ff, transparent);
  margin: 30px auto;
}

.divider-center {
  width: 300px;
  height: 1px;
  background: linear-gradient(to right, transparent, #00d4ff, transparent);
  margin: 20px auto 60px;
}

/* Partners Section */
.partners-section {
  padding: 60px 0;
  background: #f5f7fa;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}

.content-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.icon-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-item img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.icon-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.image-side img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* Proximity Section */
.proximity-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1f3d 0%, #1a3d5c 100%);
  color: white;
}

.text-content {
  padding: 40px;
  text-align: justify
}

.text-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 30px;
}

/* Best Practices Section (contém ambas as seções) */
.best-practices-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a3d5c 0%, #0a1f3d 100%);
  color: white;
}

.best-practices-section .text-content {
  padding: 40px;
  text-align: left;
}

.best-practices-section .text-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 30px;
  color: white;
}

.best-practices-section .section-title {
  text-align: left;
  color: white;
}

/* A segunda seção dentro do mesmo container também usa texto branco */
.best-practices-section .content-grid.reverse .text-content p {
  color: white;
}

.best-practices-section .content-grid.reverse .section-title {
  color: white;
}

/* Hiring Section */
.hiring-section {
  padding: 80px 0 120px;
  background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 60%, #00d4ff 60%, #00a8cc 100%);
  color: #0a1f3d;
  position: relative;
}

.hiring-section .section-title {
  color: #0a1f3d;
  margin-bottom: 20px;
}

.hiring-section .section-title .green {
  color: #00d4ff;
}

.divider-with-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px 0 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #ddd;
}

.chevron-down {
  color: #999;
  font-size: 12px;
  line-height: 1;
}

.hiring-subtitle {
  text-align: center;
  font-size: 22px;
  margin: 0 0 60px 0;
  font-weight: 400;
  color: #666;
}

.hiring-subtitle strong {
  color: #0a1f3d;
  font-weight: 700;
}

/* Services Section */
.services-section {
  margin: 60px 0;
  text-align: center;
}

.services-section .section-title {
  color: #0a1f3d;
  margin-bottom: 40px;
}

.services-section .section-title .green {
  color: #00d4ff;
}

.services-image-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Projects Section */
.projects-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: white;
}

.projects-section .section-title {
  color: white;
  margin-bottom: 60px;
}

.projects-section .section-title .green {
  color: #00d4ff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.projects-cta {
  text-align: center;
  margin-top: 60px;
}

.projects-cta p {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
}

.btn-contact {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.hiring-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hiring-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-top: -40px;
}

.card-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.hiring-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0a1f3d;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hiring-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn-blue {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* Strategy Section */
.strategy-section {
  padding: 80px 0;
  background: #f5f7fa;
}

.strategy-intro {
  text-align: center;
  font-size: 20px;
  margin: 30px 0;
  color: #666;
}

.planning-box {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
}

.planning-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a1f3d;
}

.strategy-mapping {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #00d4ff;
  margin: 40px 0 30px;
}

.strategy-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.step-item {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 15px;
}

.step-item p {
  font-size: 14px;
  font-weight: 600;
  color: #00d4ff;
  line-height: 1.4;
}

.step-arrow {
  font-size: 32px;
  color: #00d4ff;
  font-weight: 300;
}

.strategy-action {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-top: 40px;
  line-height: 1.6;
}

.highlight-dark {
  color: #0a1f3d;
}

/* Media Expertise Section */
.media-expertise-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f5f7fa 100%);
}

.media-expertise-section .section-title {
  color: #0a1f3d;
  margin-bottom: 60px;
}

.media-expertise-section .section-title .green {
  color: #00d4ff;
}

.media-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.media-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.media-logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.media-logo-item:hover::before {
  left: 100%;
}

.media-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  filter: brightness(1.15) contrast(1.1);
}

.media-logo-item img {
  max-width: 120px;
  max-height: 60px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f5f7fa 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.contact-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.floating-image {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.contact-form-area h2 {
  font-size: 36px;
  font-weight: 900;
  color: #0a1f3d;
  margin-bottom: 10px;
}

.contact-form-area > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  transition: border-color 0.3s;
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-row-split input {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00d4ff;
}

.btn-submit {
  background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* Footer - Mantido para compatibilidade, mas dr-footer-premium é o principal */
.footer {
    background-color: #0B2545;
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(30, 41, 59, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: start;
}

.footer-column {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
}

.footer-brand {
    align-items: center;
    text-align: center;
}

.footer-badges {
    align-items: center;
    text-align: center;
}

.footer-column:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    width: 120px;
    margin-bottom: 12px;
}

.footer-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
    width: 100%;
}

.footer-cnpj {
    font-size: 13px;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.footer-legal-links a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-legal-links a:hover {
    opacity: 1;
}

.footer-contact {
    padding-left: 35px;
}

.footer-contact h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    width: 100%;
}

.contact-item {
    margin-bottom: 8px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 11px;
}

.contact-item a:hover {
    opacity: 0.8;
}

.location-group {
    margin-top: 12px;
    width: 100%;
}

.location {
    margin-bottom: 12px;
}

.location .city {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 11px;
}

.location p {
    font-size: 10px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
}

.certified-partner {
    margin-bottom: 0;
    margin-top: 0;
}

.certified-partner img {
    max-width: 280px;
    height: auto;
}

.partners-logos {
    width: 100%;
}

.partners-img {
    max-width: 100%;
    opacity: 0.95;
    filter: brightness(1.1);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(30, 41, 59, 0.3);
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-left {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-center {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-right {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.footer-badges span {
    font-size: 11px;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-column {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .royal-slide-container {
    min-height: 400px;
    margin-bottom: 20px;
  }

  .royal-slide-title {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.25;
  }

  .royal-slide-subtitle {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.4;
  }

  .royal-slide-description {
    font-size: 14px;
    margin-top: 20px;
    clear: both;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -60px;
    gap: 20px;
  }

  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
  }

  .hiring-cards {
    grid-template-columns: 1fr;
  }

  .strategy-steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-column {
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .footer-column:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .contact-item {
    justify-content: center;
  }

  .location-group {
    text-align: center;
  }

  .nav {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }

  .form-row-split {
    grid-template-columns: 1fr;
  }

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

  .services-image-container {
    padding: 20px;
  }

  .media-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .media-logos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}