/* ===== CSS Custom Properties ===== */
:root {
  --primary: #7C3AED;
  --primary-dark: #6D28D9;
  --primary-light: #8B5CF6;
  --primary-bg: #F5F3FF;
  --dark: #1E1B2E;
  --dark-lighter: #2D2844;
  --text: #374151;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
  --shadow-lg: 0 10px 40px rgba(124, 58, 237, 0.15);
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Scroll Animations ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

/* ===== Section Headings ===== */
.section-tag { display: inline-block; color: var(--primary); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 560px; }

/* ===== Header ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-200); transition: box-shadow var(--transition); }
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-size: 1.7rem; font-weight: 800; color: var(--dark); }
.logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--primary); border-radius: 2px; }
.header-icons { display: flex; align-items: center; gap: 16px; }
.header-icons button { background: none; border: none; cursor: pointer; color: var(--text); font-size: 1.2rem; transition: color var(--transition); position: relative; }
.header-icons button:hover { color: var(--primary); }
.cart-count { position: absolute; top: -6px; right: -8px; background: var(--primary); color: var(--white); font-size: 0.65rem; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }

/* ===== Hero ===== */
.hero { padding: 140px 0 80px; background: linear-gradient(135deg, var(--white) 0%, var(--primary-bg) 100%); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-200); padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; color: var(--primary); margin-bottom: 24px; box-shadow: var(--shadow); }
.hero-tag .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: 3.5rem; font-weight: 800; color: var(--dark); line-height: 1.15; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--primary); position: relative; }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.hero-stat h3 { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.hero-stat p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0; }
.hero-image { position: relative; display: flex; justify-content: center; }
.hero-image img { border-radius: var(--radius); width: 100%; max-width: 520px; height: 400px; object-fit: cover; box-shadow: var(--shadow-lg); }
.hero-float { position: absolute; background: var(--white); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-float-1 { bottom: 30px; left: -20px; }
.hero-float-2 { top: 30px; right: -10px; animation-delay: 1.5s; }
.hero-float .icon-circle { width: 40px; height: 40px; background: var(--primary-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.hero-float .float-text span { font-size: 0.75rem; color: var(--text-light); }
.hero-float .float-text strong { display: block; font-size: 0.9rem; color: var(--dark); }

/* ===== Reasons Section ===== */
.reasons { padding: 100px 0; background: var(--white); }
.reasons .section-header { text-align: center; margin-bottom: 60px; }
.reasons .section-subtitle { margin: 0 auto; }
.reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.reason-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all var(--transition); }
.reason-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.reason-icon { width: 64px; height: 64px; background: var(--primary-bg); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; color: var(--primary); transition: all var(--transition); }
.reason-card:hover .reason-icon { background: var(--primary); color: var(--white); }
.reason-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.reason-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== Expert Section ===== */
.expert { padding: 100px 0; background: var(--primary-bg); }
.expert .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.expert-image { position: relative; }
.expert-image img { border-radius: var(--radius); width: 100%; height: 400px; object-fit: cover; box-shadow: var(--shadow-lg); }
.expert-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: var(--white); padding: 20px 28px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg); }
.expert-badge h3 { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.expert-badge p { font-size: 0.8rem; opacity: 0.9; margin-top: 4px; }
.expert-content .section-title { margin-bottom: 20px; }
.expert-content > p { color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }
.expert-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.expert-feature { display: flex; align-items: center; gap: 12px; }
.expert-feature .check { width: 28px; height: 28px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.8rem; flex-shrink: 0; }
.expert-feature span { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.expert-person { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.expert-avatar { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.1rem; }
.expert-person-info span { font-size: 0.8rem; color: var(--text-light); }
.expert-person-info strong { display: block; color: var(--dark); font-size: 0.95rem; }

/* ===== Services Section ===== */
.services { padding: 100px 0; background: var(--white); }
.services .section-header { text-align: center; margin-bottom: 60px; }
.services .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 36px 28px; transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-icon { width: 60px; height: 60px; background: var(--primary-bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); margin-bottom: 20px; transition: all var(--transition); }
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.service-link { font-size: 0.9rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ===== Works Section ===== */
.works { padding: 100px 0; background: var(--primary-bg); }
.works .section-header { text-align: center; margin-bottom: 60px; }
.works .section-subtitle { margin: 0 auto; }
.works-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.work-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.work-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover img { transform: scale(1.05); }
.work-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(124,58,237,0.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; opacity: 0; transition: opacity var(--transition); }
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay h3 { color: var(--white); font-size: 1.2rem; font-weight: 700; }
.work-overlay span { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

/* ===== Process Section ===== */
.process { padding: 100px 0; background: var(--white); }
.process .section-header { text-align: center; margin-bottom: 60px; }
.process .section-subtitle { margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-card { text-align: center; padding: 36px 24px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all var(--transition); position: relative; }
.process-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--primary-light); }
.process-number { position: absolute; top: 16px; right: 20px; font-size: 2.5rem; font-weight: 800; color: var(--gray-100); line-height: 1; }
.process-icon { width: 70px; height: 70px; background: var(--primary-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; color: var(--primary); transition: all var(--transition); }
.process-card:hover .process-icon { background: var(--primary); color: var(--white); }
.process-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.process-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== News Section ===== */
.news { padding: 100px 0; background: var(--primary-bg); }
.news .section-header { text-align: center; margin-bottom: 60px; }
.news .section-subtitle { margin: 0 auto; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: all var(--transition); }
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.news-card-img { overflow: hidden; height: 200px; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 24px; }
.news-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.news-meta span { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.news-meta .category { background: var(--primary-bg); color: var(--primary); padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.news-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.news-card-body h3:hover { color: var(--primary); }
.news-card-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.news-read-more { font-size: 0.9rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.news-read-more:hover { gap: 10px; }

/* ===== Footer ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.footer-about .logo { color: var(--white); margin-bottom: 16px; display: inline-block; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-post { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-post-img { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.footer-post-img img { width: 100%; height: 100%; object-fit: cover; }
.footer-post-info span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-post-info a { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.4; display: block; margin-top: 4px; }
.footer-post-info a:hover { color: var(--primary-light); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ===== Mobile Menu ===== */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 999; border-top: 1px solid var(--gray-200); }
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 1rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--gray-100); }
.mobile-menu a:hover { color: var(--primary); }

/* ===== Sub-page: Page Hero Banner ===== */
.page-hero { padding: 160px 0 80px; background: linear-gradient(135deg, var(--white) 0%, var(--primary-bg) 100%); text-align: center; }
.page-hero h1 { font-size: 3rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ===== Sub-page: Services Detail ===== */
.service-detail { padding: 100px 0; background: var(--white); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail-img img { width: 100%; height: 350px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.service-detail-content h3 { font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.service-detail-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.service-detail-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.service-detail-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text); }
.service-detail-list li::before { content: '\2713'; width: 24px; height: 24px; background: var(--primary-bg); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }

/* ===== Sub-page: Portfolio Gallery ===== */
.portfolio-gallery { padding: 100px 0; background: var(--white); }
.portfolio-filter { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 10px 24px; border-radius: 50px; border: 1px solid var(--gray-200); background: transparent; color: var(--text); cursor: pointer; font-size: 0.9rem; font-weight: 500; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(124,58,237,0.85) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.gallery-item-overlay span { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

/* ===== Sub-page: About Team ===== */
.team-section { padding: 100px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; padding: 32px 20px; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--primary-light); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--primary-bg); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: var(--primary); border: 3px solid var(--primary); }
.team-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; color: var(--primary); font-weight: 500; }
.team-card p { font-size: 0.85rem; color: var(--text-light); margin-top: 12px; line-height: 1.6; }

/* ===== Sub-page: Contact ===== */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea { padding: 16px 20px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-family: inherit; font-size: 1rem; color: var(--text); transition: all var(--transition); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--primary-bg); border-radius: var(--radius); }
.contact-info-item .icon { width: 48px; height: 48px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-light); }
.map-placeholder { width: 100%; height: 250px; background: var(--gray-100); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 1rem; margin-top: 24px; border: 2px dashed var(--gray-300); }

/* ===== Responsive: 1024px ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .hero .container { gap: 40px; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Responsive: 768px ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-float { display: none; }
  .expert .container { grid-template-columns: 1fr; }
  .expert-badge { right: 10px; bottom: -10px; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .page-hero h1 { font-size: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
