/* ==========================================================================
   cloudresearchglobal.com — Shared Stylesheet
   Visual clone of cloud-research.ru
   Desktop-first. Breakpoints: 980px, 600px
   ========================================================================== */


/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #1c61f6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.75;
}

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

ul,
ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
}

h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

p {
  color: #444;
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c61f6;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 640px;
  line-height: 1.65;
}

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

.text-blue {
  color: #1c61f6;
}


/* ==========================================================================
   3. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: #1c61f6;
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 1;
  box-shadow: 0px 15px 30px -10px rgba(28, 97, 246, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Header CTA on blue bg — white outline */
.site-header .btn-primary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.site-header .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  box-shadow: none;
  color: #ffffff;
}

.btn-secondary {
  background-color: #f7f7f7;
  color: #1a1a1a;
}

.btn-secondary:hover {
  opacity: 1;
  box-shadow: 0px 15px 30px -10px rgba(0, 11, 48, 0.2);
  transform: translateY(-2px);
  color: #1a1a1a;
}

.btn-outline {
  background-color: transparent;
  color: #1c61f6;
  border: 2px solid #1c61f6;
}

.btn-outline:hover {
  background-color: #1c61f6;
  color: #ffffff;
  box-shadow: 0px 15px 30px -10px rgba(28, 97, 246, 0.35);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 14px;
}


/* ==========================================================================
   4. HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  background-color: #1c61f6;
  box-shadow: 0px 15px 30px -10px rgba(0, 11, 48, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0px 15px 30px -10px rgba(0, 11, 48, 0.2);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  height: 28px;
  width: auto;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
  opacity: 0.8;
}

.main-nav a.active {
  color: #ffffff;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.lang-switch a {
  color: rgba(255, 255, 255, 0.6);
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch a:hover,
.lang-switch a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.lang-switch span {
  color: rgba(255, 255, 255, 0.3);
}

/* Burger button — hidden on desktop */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.burger:hover {
  background: #f7f7f7;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Burger open state */
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1c61f6;
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav a:hover {
  color: #ffffff;
  opacity: 0.8;
}

.mobile-nav .mobile-nav-cta {
  margin-top: 24px;
}

.mobile-nav .btn-primary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.mobile-nav .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}


/* ==========================================================================
   5. HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: left;
  background-color: #1c61f6;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-inner {
  max-width: 900px;
}

.hero h1 {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero CTA: white outline pill button (matches Tilda original) */
.btn-hero-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 400px;
}

.btn-hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0px 15px 30px -10px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  opacity: 1;
}

/* Hero badge / pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(28, 97, 246, 0.08);
  color: #1c61f6;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}


/* ==========================================================================
   6. STATS / NUMBERS
   ========================================================================== */

.stats {
  padding: 90px 0 30px;
  border-top: none;
  border-bottom: none;
}

.stats-grid {
  display: block;
  text-align: left;
}

.stats-label {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #16191c;
  margin-bottom: 24px;
}

.stats-inline {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.45;
  color: #16191c;
}

.stats-inline .stat-num {
  color: #ff7031;
  font-weight: 800;
}

/* Legacy grid styles for team pages */
.stat-item {}

.stat-number {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: #ff7031;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* Team pages: grid stats */
.stats--grid {
  padding: 64px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.stats--grid .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}


/* ==========================================================================
   7. LOGOS / CLIENT STRIP
   ========================================================================== */

.logos {
  padding: 64px 0;
}

.logos-title {
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
  text-align: center;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
}

.logos-grid img {
  height: 32px;
  width: auto;
  filter: grayscale(0%) opacity(0.75);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logos-grid img:hover {
  filter: grayscale(0%) opacity(1);
}


/* ==========================================================================
   8. ADVANTAGES / CARDS GRID
   ========================================================================== */

.advantages {
  padding: 120px 0 90px;
}

.advantages-header {
  margin-bottom: 56px;
  text-align: left;
}

.advantages > .container > .advantages-header .section-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.15;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}

.advantage-card {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  transition: none;
}

.advantage-card:hover {
  box-shadow: none;
  transform: none;
}

.advantage-icon {
  display: none;
}

.advantage-card h3 {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #16191c;
}

.advantage-card h3::before {
  content: '\2192 ';
  color: #ff7031;
}

.advantage-card p {
  font-size: 20px;
  color: #16191c;
  line-height: 1.55;
}


/* ==========================================================================
   9. PROBLEM-SOLUTION / CENTERED LIST
   ========================================================================== */

.problem-solution {
  padding: 120px 0 105px;
  background-color: #ffffff;
}

.problem-solution-inner {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.problem-solution-inner .section-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.05;
  color: #16191c;
}

.problem-solution-inner .section-subtitle {
  margin: 0 auto 48px;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-top: 48px;
}

.problem-card {
  padding: 0 24px;
}

.problem-card h3 {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #16191c;
  margin-bottom: 16px;
  line-height: 1.3;
}

.problem-card p {
  font-size: 16px;
  color: #16191c;
  line-height: 1.55;
}

.problem-card-divider {
  width: 1px;
  background: #d1d1d1;
  align-self: stretch;
}

.blue-dot-list {
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}

.blue-dot-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.blue-dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1c61f6;
  flex-shrink: 0;
}


/* ==========================================================================
   10. SERVICES
   ========================================================================== */

.services {
  padding: 120px 0 90px;
  background-color: #ececec;
}

.services-header {
  margin-bottom: 56px;
}

.services-header .section-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1;
  color: #16191c;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0px 15px 30px -10px rgba(0, 11, 48, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0px 20px 40px -10px rgba(0, 11, 48, 0.25);
  transform: translateY(-4px);
}

.service-card h3 {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #16191c;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-size: 15px;
  color: #555;
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #1c61f6;
  font-weight: 600;
}

.service-card .btn {
  margin-top: 28px;
}


/* ==========================================================================
   11. TEAM
   ========================================================================== */

.team {
  padding: 120px 0 90px;
  background-color: #ffffff;
}

.team-header {
  margin-bottom: 56px;
}

/* Pull quote */
.team-quote {
  border-top: none;
  padding-top: 0;
  margin-bottom: 56px;
  max-width: 100%;
}

.team-quote blockquote {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 400;
  color: #16191c;
  line-height: 1.2;
  font-style: normal;
}

.team-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: normal;
  color: #888;
  font-weight: 500;
}

/* Quote decorative line */
.team-quote-line {
  overflow: hidden;
  width: 100%;
  height: 40px;
  margin: 24px 0;
}

.team-quote-line svg {
  width: 100%;
  max-width: 1200px;
}

/* Quote author */
.team-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.team-quote-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.team-quote-author-name {
  font-weight: 700;
  font-size: 16px;
  color: #16191c;
}

.team-quote-author-role {
  font-size: 14px;
  color: #16191c;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-member {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.team-member:hover {
  box-shadow: 0px 15px 30px -10px rgba(0, 11, 48, 0.2);
  transform: translateY(-4px);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #e8eeff;
}

/* Placeholder avatar (div) */
.team-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d0e0ff 0%, #b0c8ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1c61f6;
  flex-shrink: 0;
}

.team-member-info {}

.team-member-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.team-member-role {
  font-size: 14px;
  color: #888;
  line-height: 1.45;
}

.team-member-bio {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}


/* ==========================================================================
   12. FAQ ACCORDION
   ========================================================================== */

.faq {
  padding: 75px 0 165px;
}

.faq-header {
  margin-bottom: 56px;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: #1a1a1a;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #1c61f6;
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: #888;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  background-color: #1c61f6;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.faq-answer-inner p + p {
  margin-top: 12px;
}


/* ==========================================================================
   13. CTA SECTION
   ========================================================================== */

.cta-section {
  padding: 0;
  background-color: transparent;
  text-align: center;
}

.cta-section h2 {
  display: none;
}

.cta-section p {
  display: none;
}

.cta-section .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 32px 40px;
  border-radius: 0;
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  background-color: #1c61f6;
  color: #ffffff;
  gap: 16px;
}

.cta-section .btn:hover {
  opacity: 0.95;
  box-shadow: none;
  transform: none;
}

.btn-white {
  background-color: #ffffff;
  color: #1c61f6;
}

.btn-white:hover {
  opacity: 1;
  color: #1c61f6;
  box-shadow: 0px 15px 30px -10px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}


/* ==========================================================================
   14. FOOTER
   ========================================================================== */

.site-footer {
  background-color: #ececec;
  border-top: none;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 16px;
  color: #9a9a9a;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 14px;
  color: #777;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #1c61f6;
  opacity: 1;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-email {
  font-size: 14px;
  font-weight: 600;
  color: #1c61f6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-email:hover {
  opacity: 0.75;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f7f7f7;
  color: #555;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: #1c61f6;
  color: #ffffff;
  opacity: 1;
}


/* ==========================================================================
   15. TEAM PAGE — HERO VARIANT
   ========================================================================== */

.page-hero {
  padding-top: 140px;
  padding-bottom: 80px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero .section-subtitle {
  max-width: 560px;
}


/* ==========================================================================
   16. TEAM PAGE — BENEFITS (same card style, different context)
   ========================================================================== */

.team-benefits {
  padding: 80px 0;
  border-top: 1px solid #f0f0f0;
}

.team-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

/* Team benefits cards: override the arrow prefix from advantages */
.team-benefits .advantage-card {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 36px 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.team-benefits .advantage-card:hover {
  box-shadow: 0px 15px 30px -10px rgba(0, 11, 48, 0.2);
  transform: translateY(-4px);
}

.team-benefits .advantage-card h3 {
  font-size: 19px;
  line-height: 1.3;
}

.team-benefits .advantage-card h3::before {
  display: none;
}

.team-benefits .advantage-card .advantage-icon {
  display: flex;
  width: 48px;
  height: 48px;
  background-color: rgba(28, 97, 246, 0.1);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.team-benefits .advantage-card p {
  font-size: 15px;
  color: #666;
}


/* ==========================================================================
   17. APPLICATION / CONTACT SECTION
   ========================================================================== */

.application {
  padding: 96px 0;
  text-align: center;
}

.application-inner {
  max-width: 560px;
  margin: 0 auto;
}

.application h2 {
  margin-bottom: 16px;
}

.application .section-subtitle {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #1c61f6;
  box-shadow: 0 0 0 3px rgba(28, 97, 246, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 13px;
  color: #aaa;
  text-align: center;
}


/* ==========================================================================
   18. SECTION SPACING UTILITY
   ========================================================================== */

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-bg-light {
  background-color: #f7f7f7;
}

.section-bg-blue {
  background-color: #1c61f6;
}

/* Divider */
.divider {
  height: 1px;
  background-color: #f0f0f0;
  margin: 0;
}


/* ==========================================================================
   19. RESPONSIVE — 980px (burger menu, 2-col stats, 1-col services/team)
   ========================================================================== */

@media (max-width: 980px) {

  /* Header: show burger, hide nav */
  .main-nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: left;
  }

  /* Stats: 2 columns */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  /* Services: 2 columns */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team grid: 1 column */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Advantages: 1 column */
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  /* Team benefits */
  .team-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Problem cards: stack */
  .problem-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problem-card-divider {
    width: 100%;
    height: 1px;
  }

  /* Services: 2 columns on tablet */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Form row */
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   20. RESPONSIVE — 600px (single column everything)
   ========================================================================== */

@media (max-width: 600px) {

  /* Base spacing */
  .container {
    padding: 0 16px;
  }

  /* Section spacing */
  .section,
  .advantages,
  .services,
  .team,
  .faq,
  .application,
  .problem-solution {
    padding: 64px 0;
  }

  /* Hero */
  .hero {
    min-height: 60vh;
    padding-top: 90px;
    padding-bottom: 48px;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats: 1 column */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Cards: 1 column */
  .advantages-grid,
  .services-grid,
  .team-grid,
  .team-benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Problem cards: stack */
  .problem-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-card-divider {
    width: 100%;
    height: 1px;
  }

  /* Logos */
  .logos-grid {
    gap: 28px 32px;
  }

  .logos-grid img {
    height: 22px;
  }

  /* Team member: stack on very small */
  .team-member {
    flex-direction: column;
    gap: 16px;
  }

  /* CTA section */
  .cta-section {
    padding: 72px 0;
  }

  /* Footer */
  .footer-inner {
    gap: 20px;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* FAQ */
  .faq-question {
    font-size: 15px;
  }
}


/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */
