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

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

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --secondary: #0f3460;
  --accent: #e94560;
  --gold: #c9a96e;
  --gold-light: #d4b97f;
  --white: #ffffff;
  --light: #f8f6f3;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-500: #888888;
  --gray-700: #444444;
  --gray-900: #1a1a1a;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(201,169,110,0.25);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0.9;
}

.logo-mark span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
}

.header.scrolled .logo-mark {
  background: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.header.scrolled .logo-text h1 {
  color: var(--gray-900);
}

.logo-text span {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header.scrolled .logo-text span {
  color: var(--gray-500);
}

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.header.scrolled .nav a {
  color: var(--gray-700);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

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

.nav-cta {
  padding: 10px 28px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 100px;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.header.scrolled .hamburger span {
  background: var(--gray-900);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(15,52,96,0.85) 50%, rgba(26,26,46,0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat .number {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat .number span {
  color: var(--gold);
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* ==================== SECTION ==================== */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.section-light {
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ==================== ADVANTAGES ==================== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.advantage-card {
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  border-right: 1px solid var(--gray-200);
}

.advantage-card:last-child {
  border-right: none;
}

.advantage-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transform: translateY(-8px);
}

.advantage-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(-5deg);
}

.advantage-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ==================== PRODUCTS ==================== */
.products-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  group: product;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--white);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product-content {
  padding: 28px;
}

.product-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.product-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags span {
  padding: 6px 14px;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: 12px;
  color: var(--gray-500);
  transition: var(--transition);
}

.product-card:hover .product-tags span {
  background: var(--light);
  color: var(--gold);
}

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

.service-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: var(--white);
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  bottom: 30%;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 24px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}

.about-experience .number {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.about-experience .text {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(201,169,110,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}

.about-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==================== PHILOSOPHY ==================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.philosophy-card {
  padding: 48px 36px;
  background: var(--white);
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.philosophy-card:hover::before {
  transform: scaleX(1);
}

.philosophy-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.philosophy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--light);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: var(--transition);
}

.philosophy-card:hover .philosophy-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: rotate(-5deg) scale(1.05);
}

.philosophy-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.philosophy-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ==================== PRODUCTS PAGE ==================== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(15,52,96,0.9) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ==================== CATEGORY CARDS ==================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.category-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  border: 1px solid var(--gray-200);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-content {
  padding: 32px;
}

.category-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.category-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}

.category-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-specs span {
  padding: 6px 16px;
  background: var(--light);
  border-radius: 100px;
  font-size: 12px;
  color: var(--gray-700);
  font-weight: 500;
}

/* ==================== SPECS TABLE ==================== */
.specs-section {
  margin-bottom: 60px;
}

.specs-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-200);
}

.specs-header-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.specs-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-900);
}

.specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.specs-table th {
  padding: 16px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
}

.specs-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tbody tr:hover td {
  background: var(--light);
}

/* ==================== NEWS ==================== */
.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.news-card-featured {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
}

.news-card-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.news-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.news-card-featured .news-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  color: var(--white);
}

.news-card-featured .news-date {
  color: var(--gold);
}

.news-card-featured h3 {
  color: var(--white);
  font-size: 24px;
}

.news-card-featured p {
  color: rgba(255,255,255,0.8);
}

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

.news-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.news-card-image {
  height: 200px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 24px;
}

.news-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.news-card-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-content p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.news-link:hover {
  gap: 10px;
}

/* ==================== PAGINATION ==================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.pagination-item {
  min-width: 44px;
  height: 44px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.pagination-item:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pagination-item.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.pagination-item.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pagination-dots {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 14px;
  letter-spacing: 2px;
}

.pagination-info {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-500);
}

/* ==================== NEWS DETAIL ==================== */
.news-detail-article {
  max-width: 820px;
  margin: 0 auto;
}

.news-detail-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}

.news-detail-header .news-date {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.news-detail-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 20px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: var(--gray-500);
}

.news-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-detail-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
}

.news-detail-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.news-detail-content {
}

.news-detail-content p {
  font-size: 16px;
  line-height: 2;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.news-detail-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 40px 0 20px;
}

.news-detail-content ul {
  margin: 0 0 24px 24px;
  list-style: disc;
}

.news-detail-content ul li {
  font-size: 16px;
  line-height: 2;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.news-detail-content blockquote {
  padding: 24px 32px;
  margin: 32px 0;
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.news-detail-content blockquote p {
  font-size: 16px;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 0;
}

.news-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.news-detail-tags span {
  padding: 8px 20px;
  background: var(--light);
  border-radius: 100px;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.news-detail-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.news-detail-share span {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 600;
}

.news-detail-share a {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.news-detail-share a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.news-detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.news-nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--light);
  border-radius: 16px;
  transition: var(--transition);
}

.news-nav-item:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.news-nav-item.next {
  text-align: right;
  align-items: flex-end;
}

.news-nav-item .label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-nav-item .title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
}

/* ==================== CONTACT ==================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-section {
  padding: 20px 0;
}

.contact-info-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.contact-info-section > p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
}

.contact-detail:hover .contact-detail-icon {
  background: var(--gold);
}

.contact-detail h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.contact-map {
  margin-top: 36px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-card {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--gray-100);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.1);
}

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

/* ==================== FOOTER ==================== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantage-card {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .products-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-section {
    gap: 48px;
  }
  
  .news-featured {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 0;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-lg);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 16px;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .nav-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
  
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .products-showcase {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section {
    grid-template-columns: 1fr;
  }
  
  .about-images {
    height: 400px;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .pagination {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .pagination-item {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  
  .news-detail-nav {
    grid-template-columns: 1fr;
  }
  
  .news-detail-header {
    padding-bottom: 28px;
    margin-bottom: 32px;
  }
  
  .news-detail-header h1,
  .news-detail-header h2 {
    font-size: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-card {
    padding: 32px 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 15px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 28px;
  }
}
