/* ==========================================
   ASYMMETRIC BALANCE DESIGN SYSTEM
   ========================================== */

:root {
  --primary-color: #786c3b;
  --accent-color: #8b9467;
  --secondary-accent: #ffc107;
  --bg-color: #f0f0f0;
  --text-color: #333333;
  --light-text: #666666;
  --white: #ffffff;
  --border-color: #ccc;
  --shadow-color: rgba(15, 23, 42, 0.1);

  --spacing-section: 180px;
  --spacing-element: 46px;
  --spacing-asymmetric-left: 63px;
  --spacing-asymmetric-right: 31px;

  --font-primary: 'Space Grotesk', sans-serif;
  --font-secondary: 'Inter', sans-serif;
}

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

body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4.5rem;
  font-weight: 300;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

section {
  padding: var(--spacing-section) 0;
}

/* ==========================================
   ASYMMETRIC CONTAINER SYSTEM
   ========================================== */

.asymmetric-container {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 8%;
  padding-right: 4%;
}

.offset-content {
  margin-left: 5%;
}

.offset-service {
  margin-top: 83px;
}

.offset-value {
  margin-top: 37px;
}

.offset-stat {
  margin-top: 20px;
}

.offset-case {
  margin-top: 58px;
}

.offset-integration {
  margin-top: 33px;
}

.offset-brand {
  margin-left: 23px;
}

.offset-nav {
  margin-right: 28px;
}

/* ==========================================
   ASYMMETRIC CARDS
   ========================================== */

.asymmetric-card {
  border-radius: 0 23px 0 26px;
  box-shadow: -23px 21px 0 var(--border-color);
  background: var(--white);
  padding: var(--spacing-element);
  transition: all 0.4s ease;
  position: relative;
}

.asymmetric-card::before {
  content: '';
  position: absolute;
  top: -7px;
  left: -11px;
  right: 8px;
  bottom: 8px;
  border: 2px solid var(--accent-color);
  border-radius: 0 22px 0 22px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.asymmetric-card:hover {
  transform: translate(9px, -7px);
  box-shadow: -27px 33px 0 var(--border-color);
}

.asymmetric-card:hover::before {
  opacity: 1;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  color: var(--white);
  border: none;
  padding: 16px 38px;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  pointer-events: none;
}

.btn-accent:hover {
  transform: translateX(5px);
  box-shadow: -12px 7px 21px var(--shadow-color);
}

.btn-accent:hover::before {
  left: 100%;
}

.asymmetric-btn {
  border-radius: 0 14px 0 14px;
}

.asymmetric-btn-outline {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  border-radius: 0 12px 0 17px;
  padding: 17px 34px;
}

.asymmetric-btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateX(-5px);
}

.btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--white);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
  background: var(--primary-color) !important;
  padding: 20px 0;
  box-shadow: 0 4px 20px var(--shadow-color);
}

.asymmetric-nav {
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%) 1;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white) !important;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.logo-img {
  max-height: 42px;
  width: auto;
}

.site-name {
  color: var(--white);
  font-size: 1.5rem;
}

.nav-link {
  color: var(--white) !important;
  margin: 0 15px;
  font-weight: 500;
  position: relative;
  padding: 8px 0 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
  pointer-events: none;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  background: var(--primary-color);
  border: none;
  border-radius: 0 7px 0 12px;
  padding: 12px 0;
}

.asymmetric-dropdown {
  margin-left: 18px;
}

.dropdown-item {
  color: var(--white);
  padding: 7px 25px;
}

.dropdown-item:hover {
  background: var(--accent-color);
  color: var(--white);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-asymmetric {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 120px 0 var(--spacing-section);
  position: relative;
  overflow: hidden;
}

.hero-asymmetric::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-offset {
  padding-left: 5%;
}

.hero-badge {
  display: inline-block;
  padding: 8px 17px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 18px 0 13px;
  color: var(--secondary-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  margin: 31px 0;
  line-height: 1.1;
}

.hero-lead {
  font-size: 1.3rem;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.hero-cta-group {
  margin-bottom: 48px;
}

.hero-stats {
  margin-top: 62px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-accent);
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-wrapper {
  position: relative;
  margin-left: 61px;
}

.hero-image {
  border-radius: 0 30px 0 30px;
  box-shadow: -33px 32px 0 var(--accent-color);
  width: 100%;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  padding: 17px;
  border-radius: 0 12px 0 16px;
  box-shadow: 0 11px 33px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 10%;
  right: -33px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 20%;
  left: -40px;
  animation-delay: 1s;
}

.hero-float-card.card-3 {
  bottom: 10%;
  right: -22px;
  animation-delay: 2s;
}

.float-card-text {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 7px;
}

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

/* ==========================================
   SECTIONS
   ========================================== */

.section-header-offset {
  padding-left: 5%;
  margin-bottom: 83px;
}

.section-badge {
  display: inline-block;
  padding: 8px 17px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 0 15px 0 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 21px;
}

.section-title {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 22px;
  text-align: left;
}

.section-description {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 800px;
  text-align: right;
  margin-left: auto;
  width: 60%;
}

/* ==========================================
   FEATURES
   ========================================== */

.features-asymmetric {
  background: var(--white);
}

.feature-card {
  padding: var(--spacing-element);
  transition: all 0.3s ease;
}

.feature-icon {
  width: 81px;
  height: 81px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  border-radius: 0 17px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 14px;
  text-align: left;
}

.feature-text {
  color: var(--light-text);
  text-align: right;
  padding-right: 10%;
}

/* ==========================================
   SERVICES
   ========================================== */

.services-asymmetric {
  background: var(--bg-color);
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(6, 182, 212, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: var(--white);
  pointer-events: none;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: var(--spacing-element);
}

.service-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 18px;
  text-align: left;
}

.service-description {
  color: var(--light-text);
  margin-bottom: 27px;
  text-align: right;
  padding-right: 5%;
}

.service-link {
  color: var(--accent-color);
  font-weight: 600;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  margin-left: 10%;
}

.service-link:hover {
  color: var(--secondary-accent);
  transform: translateX(5px);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials-asymmetric {
  background: var(--white);
}

.testimonial-card {
  padding: var(--spacing-element);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-color);
  margin: 22px 0;
  line-height: 1.8;
  text-align: right;
  padding-right: 10%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 31px;
  margin-left: 5%;
}

.author-avatar {
  width: 57px;
  height: 59px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.author-name {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.author-role {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* ==========================================
   TEAM
   ========================================== */

.team-asymmetric {
  background: var(--bg-color);
}

.team-card {
  padding: 0;
  overflow: hidden;
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-social {
  position: absolute;
  bottom: -47px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 13px;
  padding: 15px;
  background: rgba(15, 23, 42, 0.9);
  transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-card:hover .team-image {
  transform: scale(1.1);
}

.social-icon {
  width: 43px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--secondary-accent);
  transform: translateY(-5px);
}

.team-info {
  padding: 28px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.team-role {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* ==========================================
   STATS
   ========================================== */

.stats-asymmetric {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: var(--white);
}

.stat-box {
  padding: 42px 27px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box .stat-icon {
  font-size: 3rem;
  color: var(--secondary-accent);
}

.stat-box .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin: 15px 0;
}

.stat-box .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.stat-box:hover {
  transform: translateY(-13px);
}

/* ==========================================
   FAQ
   ========================================== */

.faq-asymmetric {
  background: var(--white);
}

.asymmetric-accordion .accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 0 12px 0 15px;
  overflow: hidden;
  box-shadow: 0 5px 12px var(--shadow-color);
}

.asymmetric-accordion .accordion-button {
  background: var(--primary-color);
  color: var(--white);
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  padding: 26px 30px;
  border: none;
  text-align: left;
}

.asymmetric-accordion .accordion-button:not(.collapsed) {
  background: var(--accent-color);
  box-shadow: none;
}

.asymmetric-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.asymmetric-accordion .accordion-body {
  padding: 31px;
  background: var(--white);
  color: var(--text-color);
  text-align: right;
  padding-right: 10%;
}

/* ==========================================
   CTA
   ========================================== */

.cta-asymmetric {
  background: var(--bg-color);
}

.cta-wrapper {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: var(--white);
  padding: var(--spacing-section) var(--spacing-asymmetric-left);
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: left;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 41px;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  max-width: 80%;
  margin-left: auto;
}

.cta-buttons {
  margin-bottom: 38px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: 10%;
}

.cta-feature {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
  color: var(--secondary-accent);
  margin-right: 16px;
  font-size: 1.3rem;
}

.cta-image-wrapper {
  position: relative;
  margin-left: 40px;
}

.cta-image {
  border-radius: 0 29px 0 31px;
  box-shadow: -33px 30px 0 var(--accent-color);
  width: 100%;
}

/* ==========================================
   INTEGRATIONS
   ========================================== */

.integrations-asymmetric {
  background: var(--white);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 39px;
  margin-top: 60px;
}

.integration-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--bg-color);
  border-radius: 0 22px 0 23px;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.integration-logo:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-7px);
  box-shadow: 0 14px 33px var(--shadow-color);
}

/* ==========================================
   PRICING
   ========================================== */

.pricing-asymmetric {
  background: var(--bg-color);
}

.pricing-card {
  padding: var(--spacing-element);
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-badge {
  display: inline-block;
  padding: 8px 19px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 0 11px 0 9px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 23px;
}

.pricing-badge-featured {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
}

.pricing-featured {
  transform: scale(1.05);
  box-shadow: -27px 27px 0 var(--border-color), 0 18px 41px var(--shadow-color);
}

.pricing-plan-name {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 21px;
}

.pricing-price {
  margin: 27px 0;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.price-period {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-left: 8px;
}

.pricing-description {
  color: var(--light-text);
  margin-bottom: 29px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 31px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}

.pricing-features li i {
  color: var(--accent-color);
  margin-right: 11px;
}

/* ==========================================
   PAGE HERO
   ========================================== */

.page-hero-asymmetric {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: var(--white);
  padding: 150px 0 99px;
}

.page-title {
  font-size: 4rem;
  margin-bottom: 20px;
  text-align: left;
}

.page-lead {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  max-width: 70%;
  margin-left: auto;
}

.page-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.asymmetric-image {
  border-radius: 0 30px 0 32px;
  box-shadow: -20px 19px 0 var(--accent-color);
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */

.content-section-asymmetric {
  background: var(--white);
}

.content-wrapper {
  padding: var(--spacing-asymmetric-left);
}

.content-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 23px;
  text-align: left;
}

.content-text {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
  text-align: right;
  padding-right: 5%;
}

.value-card {
  padding: 34px;
}

.value-icon {
  color: var(--accent-color);
}

.value-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  text-align: left;
}

.value-text {
  color: var(--light-text);
  text-align: right;
  padding-right: 5%;
}

/* ==========================================
   SERVICE DETAIL
   ========================================== */

.service-detail-hero-asymmetric {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: var(--white);
  padding: 150px 0 var(--spacing-section);
}

.service-cta-group {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}

.service-features-asymmetric {
  background: var(--white);
}

.feature-item {
  padding: 33px;
}

.service-process-asymmetric {
  background: var(--bg-color);
}

.process-step {
  text-align: center;
  padding: 32px;
}

.step-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1;
  margin-bottom: 21px;
}

.step-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 17px;
}

.step-text {
  color: var(--light-text);
}

/* ==========================================
   CONTACT
   ========================================== */

.contact-section-asymmetric {
  background: var(--white);
}

.contact-info-wrapper {
  padding: var(--spacing-element);
}

.contact-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
  margin-left: 5%;
}

.contact-icon {
  width: 63px;
  height: 58px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  border-radius: 0 12px 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-right: 18px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 1rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-value {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-value a {
  color: var(--primary-color);
}

.contact-value a:hover {
  color: var(--accent-color);
}

.social-links-large {
  display: flex;
  gap: 17px;
}

.social-link-large {
  width: 53px;
  height: 53px;
  border-radius: 0 12px 0 9px;
  background: var(--accent-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-link-large:hover {
  background: var(--secondary-accent);
  transform: translateY(-5px);
}

.contact-form-wrapper {
  padding: var(--spacing-element);
}

.form-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 31px;
  text-align: left;
}

.contact-form .form-label {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--border-color);
  border-radius: 0 10px 0 12px;
  padding: 12px 21px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: -5px 5px 0 var(--accent-color);
  outline: none;
}

/* ==========================================
   BLOG
   ========================================== */

.blog-grid-asymmetric {
  background: var(--white);
}

.blog-card {
  padding: 0;
  overflow: hidden;
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 19px;
  right: 21px;
  background: var(--accent-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 0 7px 0 13px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content {
  padding: var(--spacing-element);
}

.blog-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--light-text);
  font-size: 0.9rem;
}

.blog-title a {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  display: block;
  margin-bottom: 12px;
}

.blog-title a:hover {
  color: var(--accent-color);
}

.blog-excerpt {
  color: var(--light-text);
  margin-bottom: 23px;
  text-align: right;
  padding-right: 5%;
}

.blog-read-more {
  color: var(--accent-color);
  font-weight: 600;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  margin-left: 5%;
}

.blog-read-more:hover {
  color: var(--secondary-accent);
  transform: translateX(5px);
}

/* ==========================================
   ARTICLE DETAIL
   ========================================== */

.article-detail-asymmetric {
  background: var(--white);
}

.article-hero {
  padding: 150px 0 77px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
  color: var(--white);
}

.article-category-badge {
  display: inline-block;
  padding: 8px 19px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 0 10px 0 13px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-title {
  font-size: 3.5rem;
  margin: 17px 0;
  text-align: left;
}

.article-meta {
  display: flex;
  gap: 29px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.article-featured-image {
  padding: 58px 0;
}

.article-content {
  padding: var(--spacing-section) 0;
}

.article-content .lead {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 38px;
  text-align: right;
  padding-right: 5%;
}

.article-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 58px 0 26px;
  text-align: left;
}

.article-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 40px 0 19px;
  text-align: left;
}

.article-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-color);
  margin-bottom: 25px;
  text-align: right;
  padding-right: 5%;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 33px 0;
}

.article-list li {
  padding: 13px 0;
  padding-left: 40px;
  position: relative;
  color: var(--text-color);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-color);
}

.article-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.article-quote-box {
  padding: 52px;
  margin: 52px 0;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.3;
  position: absolute;
  top: 31px;
  left: 27px;
}

.article-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-color);
  margin: 0 0 21px;
  padding-left: 57px;
  text-align: right;
  padding-right: 10%;
}

.quote-author {
  display: block;
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
  text-align: right;
  padding-right: 10%;
}

.article-cta {
  padding: 47px;
  text-align: center;
  margin: 59px 0;
}

.article-cta .cta-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.article-cta .cta-text {
  color: var(--light-text);
  margin-bottom: 33px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 27px 0;
  border-top: 2px solid var(--border-color);
}

.tag-label {
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.article-tag {
  padding: 8px 17px;
  background: var(--bg-color);
  color: var(--primary-color);
  border-radius: 0 13px 0 13px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.article-tag:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-3px);
}

.article-share {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 20px 0;
}

.share-label {
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.share-btn {
  width: 43px;
  height: 45px;
  border-radius: 0 11px 0 13px;
  background: var(--accent-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: var(--secondary-accent);
  transform: translateY(-3px);
}

/* ==========================================
   CASE STUDIES
   ========================================== */

.case-studies-grid-asymmetric {
  background: var(--white);
}

.case-study-card {
  padding: 0;
  overflow: hidden;
}

.case-study-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.case-study-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image {
  transform: scale(1.1);
}

.case-study-content {
  padding: var(--spacing-element);
}

.case-study-meta {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
}

.case-study-industry,
.case-study-type {
  padding: 6px 13px;
  background: var(--bg-color);
  color: var(--accent-color);
  border-radius: 0 8px 0 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  text-align: left;
}

.case-study-description {
  color: var(--light-text);
  margin-bottom: 32px;
  text-align: right;
  padding-right: 5%;
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
  padding-top: 29px;
  border-top: 2px solid var(--border-color);
}

.case-study-stats .stat-item {
  text-align: center;
}

.case-study-stats .stat-number {
  font-size: 2rem;
  color: var(--accent-color);
}

.case-study-stats .stat-label {
  font-size: 0.85rem;
  color: var(--light-text);
}

/* ==========================================
   PRICING COMPARISON
   ========================================== */

.pricing-comparison-asymmetric {
  background: var(--white);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
  margin-top: 42px;
}

.comparison-table thead th {
  background: var(--primary-color);
  color: var(--white);
  padding: 22px 23px;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  text-align: center;
  border: none;
}

.comparison-table thead th:first-child {
  text-align: left;
  border-radius: 0 0 0 17px;
}

.comparison-table thead th:last-child {
  border-radius: 0 15px 0 0;
}

.comparison-table thead .featured-column {
  background: var(--accent-color);
  transform: scale(1.05);
  z-index: 1;
  position: relative;
}

.comparison-table tbody tr {
  background: var(--white);
  box-shadow: 0 2px 7px var(--shadow-color);
}

.comparison-table tbody td {
  padding: 23px;
  text-align: center;
  border: none;
  color: var(--text-color);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  padding-left: 30px;
}

.comparison-table tbody .featured-column {
  background: rgba(59, 130, 246, 0.05);
}

/* ==========================================
   LEGAL PAGES
   ========================================== */

.legal-content-asymmetric {
  background: var(--white);
  padding: var(--spacing-section) 0;
}

.legal-wrapper {
  padding: var(--spacing-asymmetric-left);
}

.legal-wrapper h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 50px 0 17px;
  text-align: left;
}

.legal-wrapper h2:first-child {
  margin-top: 0;
}

.legal-wrapper p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 19px;
  text-align: right;
  padding-right: 5%;
}

.legal-wrapper ul,
.legal-wrapper ol {
  margin: 17px 0;
  padding-left: 38px;
}

.legal-wrapper li {
  margin-bottom: 12px;
  color: var(--text-color);
  line-height: 1.8;
}

.legal-wrapper a {
  color: var(--accent-color);
  font-weight: 600;
}

.legal-wrapper a:hover {
  color: var(--secondary-accent);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer-asymmetric {
  background: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-section) 0 41px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-bottom: 23px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 42px;
  height: 43px;
  border-radius: 0 10px 0 13px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--secondary-accent);
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 8px;
  width: 18px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 58px 0 28px;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-legal {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 3rem; }
  .hero-title { font-size: 3.5rem; }
  .section-title { font-size: 3rem; }
}

@media (max-width: 992px) {
  :root {
    --spacing-section: 120px;
    --spacing-element: 33px;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  .hero-title { font-size: 3rem; }
  .page-title { font-size: 3rem; }
  .section-title { font-size: 2.5rem; }

  .asymmetric-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .offset-content,
  .offset-service,
  .offset-value,
  .offset-stat,
  .offset-case,
  .offset-integration {
    margin-left: 0;
    margin-top: 0;
  }

  .section-description {
    text-align: left;
    margin-left: 0;
    width: 100%;
  }

  .feature-text,
  .service-description,
  .testimonial-quote,
  .value-text,
  .blog-excerpt,
  .case-study-description,
  .content-text,
  .page-lead {
    text-align: left;
    padding-right: 0;
    margin-left: 0;
  }

  .hero-image-wrapper,
  .cta-image-wrapper {
    margin-left: 0;
    margin-top: 51px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero-title { font-size: 2.5rem; }
  .page-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }

  :root {
    --spacing-section: 82px;
    --spacing-element: 28px;
  }

  .asymmetric-card {
    border-radius: 0 17px 0 18px;
    box-shadow: -12px 7px 0 var(--border-color);
  }

  .hero-asymmetric {
    min-height: auto;
    padding: 98px 0 62px;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .article-content h2 {
    font-size: 2rem;
  }

  .article-content h3 {
    font-size: 1.5rem;
  }

  .article-quote {
    font-size: 1.2rem;
    padding-left: 43px;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  .hero-title { font-size: 2rem; }
  .page-title { font-size: 2rem; }

  .asymmetric-container {
    padding-left: 20px;
    padding-right: 22px;
  }

  .btn-accent,
  .asymmetric-btn-outline {
    padding: 11px 24px;
    font-size: 0.9rem;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 17px 11px;
  }
}
