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

:root {
--primary: #1a2332;
--secondary: #4a90e2;
--accent: #f39c12;
--tertiary: #2ecc71;
--text: #2c3e50;
--light: #f8f9fa;
--white: #fff;
--gray: #7f8c8d;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.5;
color: var(--text);
font-size: 15px;
}

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

header {
background: var(--white);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
transform: translateY(0);
transition: transform 0.3s;
}

header.hidden {
transform: translateY(-100%);
}

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

.logo {
font-size: 18px;
font-weight: 700;
color: var(--primary);
}

nav ul {
display: flex;
list-style: none;
gap: 25px;
}

nav a {
text-decoration: none;
color: var(--text);
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
}

nav a:hover {
color: var(--secondary);
}

.burger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 4px;
}

.burger span {
width: 22px;
height: 2px;
background: var(--primary);
transition: 0.3s;
}

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

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

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

.hero-modern {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
padding: 80px 20px;
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 50%, var(--secondary) 100%);
z-index: -1;
}

.hero-bg::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 20% 50%, rgba(74,144,226,0.2) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(243,156,18,0.15) 0%, transparent 50%);
}

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}

.hero-text {
color: var(--white);
}

.hero-label {
display: inline-block;
padding: 6px 16px;
background: rgba(255,255,255,0.15);
border-radius: 20px;
font-size: 13px;
font-weight: 600;
margin-bottom: 20px;
letter-spacing: 0.5px;
}

.hero-text h1 {
font-size: 48px;
line-height: 1.2;
margin-bottom: 20px;
font-weight: 800;
}

.hero-text p {
font-size: 18px;
line-height: 1.6;
opacity: 0.9;
margin-bottom: 30px;
}

.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-outline {
display: inline-block;
padding: 12px 28px;
background: transparent;
color: var(--white);
border: 2px solid var(--white);
text-decoration: none;
border-radius: 4px;
font-size: 14px;
font-weight: 600;
transition: all 0.3s;
}

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

.hero-visual {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}

.hero-card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 25px;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.2);
color: var(--white);
transition: transform 0.3s;
}

.hero-card:hover {
transform: translateY(-5px);
}

.card-icon {
font-size: 32px;
margin-bottom: 12px;
}

.hero-card h3 {
font-size: 18px;
margin-bottom: 8px;
color: var(--white);
}

.hero-card p {
font-size: 14px;
opacity: 0.85;
margin: 0;
}

.page-hero {
background: var(--primary);
color: var(--white);
padding: 50px 20px;
text-align: center;
}

.page-hero h1 {
font-size: 28px;
margin-bottom: 10px;
}

.page-hero p {
font-size: 15px;
opacity: 0.9;
}

section {
padding: 50px 20px;
}

h2 {
font-size: 26px;
margin-bottom: 20px;
color: var(--primary);
}

h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--primary);
}

p {
margin-bottom: 15px;
}

.btn {
display: inline-block;
padding: 12px 28px;
background: var(--secondary);
color: var(--white);
text-decoration: none;
border-radius: 4px;
font-size: 14px;
font-weight: 600;
transition: background 0.3s;
border: none;
cursor: pointer;
}

.btn:hover {
background: #2980b9;
}

.btn-secondary {
background: var(--gray);
}

.btn-secondary:hover {
background: #6c7a7b;
}

.intro {
background: var(--white);
}

.intro-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 50px;
align-items: center;
margin-top: 30px;
}

.intro-stats {
display: grid;
grid-template-columns: 1fr;
gap: 25px;
}

.stat-item {
background: var(--light);
padding: 30px;
border-radius: 8px;
text-align: center;
border-left: 4px solid var(--secondary);
}

.stat-number {
font-size: 42px;
font-weight: 800;
color: var(--secondary);
line-height: 1;
margin-bottom: 8px;
}

.stat-label {
font-size: 14px;
color: var(--gray);
font-weight: 600;
}

.services-overview {
background: var(--light);
}

.section-intro {
text-align: center;
font-size: 17px;
color: var(--gray);
max-width: 700px;
margin: 0 auto 40px;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 40px;
}

.service-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
font-size: 40px;
margin-bottom: 15px;
}

.service-link {
color: var(--secondary);
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: color 0.3s;
}

.service-link:hover {
color: var(--primary);
}

.approach {
background: var(--white);
}

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

.approach-content img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.approach-points {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 25px;
}

.point strong {
color: var(--primary);
font-size: 16px;
display: block;
margin-bottom: 5px;
}

.point p {
margin: 0;
color: var(--gray);
font-size: 14px;
}

.process-modern {
background: var(--light);
}

.process-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 40px;
}

.process-item {
background: var(--white);
padding: 30px;
border-radius: 8px;
position: relative;
}

.process-number {
font-size: 48px;
font-weight: 800;
color: var(--accent);
opacity: 0.3;
line-height: 1;
margin-bottom: 15px;
}

.industries {
background: var(--white);
}

.industries-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 40px;
}

.industry-item {
background: var(--light);
padding: 25px;
border-radius: 8px;
border-left: 3px solid var(--tertiary);
}

.industry-item h3 {
font-size: 17px;
margin-bottom: 8px;
}

.industry-item p {
font-size: 14px;
color: var(--gray);
margin: 0;
}

.testimonials-modern {
background: var(--primary);
color: var(--white);
}

.testimonials-modern h2 {
color: var(--white);
text-align: center;
}

.testimonials-slider {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}

.testimonial-card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-author strong {
display: block;
font-size: 15px;
margin-bottom: 3px;
}

.testimonial-author span {
font-size: 13px;
opacity: 0.8;
}

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

.insights-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
gap: 30px;
margin-top: 40px;
}

.insight-card {
background: var(--white);
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s;
}

.insight-card:hover {
transform: translateY(-5px);
}

.insight-card img {
width: 100%;
height: auto;
display: block;
}

.insight-content {
padding: 25px;
}

.insight-content h3 {
font-size: 19px;
margin-bottom: 12px;
}

.insight-content p {
font-size: 14px;
color: var(--gray);
margin-bottom: 15px;
}

.insight-content a {
color: var(--secondary);
text-decoration: none;
font-weight: 600;
font-size: 14px;
}

.cta-modern {
background: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%);
color: var(--white);
text-align: center;
padding: 70px 20px;
}

.cta-content h2 {
color: var(--white);
font-size: 36px;
margin-bottom: 15px;
}

.cta-content p {
font-size: 17px;
margin-bottom: 30px;
opacity: 0.95;
}

.btn-large {
display: inline-block;
padding: 16px 40px;
background: var(--white);
color: var(--secondary);
text-decoration: none;
border-radius: 4px;
font-size: 16px;
font-weight: 700;
transition: transform 0.3s;
}

.btn-large:hover {
transform: scale(1.05);
}

.cta-note {
font-size: 13px;
margin-top: 20px;
opacity: 0.85;
}

.location {
background: var(--white);
}

.location-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
margin-top: 30px;
}

.location-info h3 {
font-size: 20px;
margin-bottom: 15px;
}

.location-info p {
margin-bottom: 12px;
color: var(--gray);
}

.map-container iframe {
width: 100%;
border-radius: 6px;
}

footer {
background: var(--primary);
color: var(--white);
padding: 40px 20px 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-col h4 {
font-size: 16px;
margin-bottom: 15px;
color: var(--white);
}

.footer-col ul {
list-style: none;
}

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

.footer-col a {
color: var(--light);
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
}

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

.footer-col p {
font-size: 14px;
color: var(--light);
margin-bottom: 8px;
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}

.footer-bottom p {
font-size: 13px;
margin: 0;
}

.footer-links {
display: flex;
gap: 20px;
}

.footer-links a {
color: var(--light);
text-decoration: none;
font-size: 13px;
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary);
color: var(--white);
padding: 20px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
z-index: 9999;
display: none;
}

.cookie-consent.show {
display: block;
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.cookie-content p {
margin: 0;
font-size: 14px;
flex: 1;
min-width: 250px;
}

.cookie-buttons {
display: flex;
gap: 15px;
}

.btn-accept {
padding: 10px 24px;
background: var(--secondary);
color: var(--white);
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
}

.btn-learn {
padding: 10px 24px;
background: transparent;
color: var(--white);
border: 1px solid var(--white);
border-radius: 4px;
text-decoration: none;
font-size: 14px;
}

.service-list {
display: flex;
flex-direction: column;
gap: 40px;
margin-top: 30px;
}

.service-detail-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
align-items: center;
}

.service-detail-item:nth-child(even) {
direction: rtl;
}

.service-detail-item:nth-child(even) > * {
direction: ltr;
}

.service-detail-item img {
width: 100%;
height: auto;
border-radius: 6px;
}

.service-detail-content ul {
margin-top: 15px;
padding-left: 20px;
}

.service-detail-content li {
margin-bottom: 8px;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.pricing-card {
background: var(--white);
border: 2px solid var(--light);
border-radius: 6px;
padding: 30px;
text-align: center;
}

.pricing-card.featured {
border-color: var(--secondary);
box-shadow: 0 4px 12px rgba(52,152,219,0.2);
}

.price {
font-size: 36px;
font-weight: 700;
color: var(--secondary);
margin: 20px 0;
}

.pricing-card ul {
list-style: none;
margin: 25px 0;
text-align: left;
}

.pricing-card li {
padding: 10px 0;
border-bottom: 1px solid var(--light);
font-size: 14px;
}

.process-timeline {
display: flex;
flex-direction: column;
gap: 25px;
margin-top: 30px;
}

.timeline-item {
background: var(--light);
padding: 25px;
border-radius: 6px;
border-left: 4px solid var(--secondary);
}

.rebrand-reasons, .considerations-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.reason-item, .consideration {
background: var(--light);
padding: 25px;
border-radius: 6px;
}

.rebrand-steps {
display: flex;
flex-direction: column;
gap: 25px;
margin-top: 30px;
}

.rebrand-step {
background: var(--white);
padding: 25px;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefits-list {
background: var(--light);
padding: 30px;
border-radius: 6px;
margin-top: 20px;
}

.benefits-list li {
margin-bottom: 12px;
padding-left: 10px;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 30px;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 25px;
}

.contact-item h3 {
font-size: 16px;
margin-bottom: 8px;
}

.contact-item p {
margin: 0;
color: var(--gray);
}

.contact-form-wrapper {
background: var(--light);
padding: 30px;
border-radius: 6px;
}

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

label {
display: block;
margin-bottom: 6px;
font-weight: 600;
font-size: 14px;
}

input, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
font-family: inherit;
}

textarea {
resize: vertical;
}

.checkbox-group {
display: flex;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
width: auto;
margin-top: 3px;
}

.checkbox-label span {
font-size: 13px;
}

.checkbox-label a {
color: var(--secondary);
}

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

.thankyou-page, .error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--white);
padding: 20px;
}

.thankyou-content, .error-content {
text-align: center;
max-width: 600px;
}

.thankyou-icon {
font-size: 64px;
margin-bottom: 20px;
background: var(--white);
color: var(--secondary);
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
}

.error-code {
font-size: 96px;
font-weight: 700;
margin-bottom: 20px;
}

.thankyou-content h1, .error-content h1 {
font-size: 28px;
margin-bottom: 15px;
}

.thankyou-info, .thankyou-contact {
margin: 25px 0;
}

.thankyou-actions, .error-actions {
display: flex;
gap: 15px;
justify-content: center;
margin: 25px 0;
flex-wrap: wrap;
}

.error-links {
margin-top: 30px;
text-align: left;
background: rgba(255,255,255,0.1);
padding: 20px;
border-radius: 6px;
}

.error-links ul {
list-style: none;
margin-top: 15px;
}

.error-links li {
margin-bottom: 10px;
}

.error-links a {
color: var(--white);
text-decoration: none;
}

.policy-page {
background: var(--white);
}

.policy-content {
max-width: 900px;
margin: 30px auto 0;
}

.policy-content h2 {
margin-top: 35px;
font-size: 22px;
}

.policy-content h3 {
margin-top: 25px;
font-size: 17px;
}

.policy-content ul {
margin: 15px 0 15px 25px;
}

.policy-content li {
margin-bottom: 10px;
}

.update-date {
color: var(--gray);
font-size: 14px;
margin-bottom: 25px;
}

@media (max-width: 768px) {
nav ul {
position: fixed;
top: 60px;
left: -100%;
width: 100%;
height: calc(100vh - 60px);
background: var(--white);
flex-direction: column;
padding: 30px;
gap: 15px;
transition: left 0.3s;
box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

nav ul.active {
left: 0;
}

.burger {
display: flex;
}

.hero-modern {
min-height: auto;
padding: 60px 20px;
}

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

.hero-text h1 {
font-size: 32px;
}

.hero-text p {
font-size: 16px;
}

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

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

.location-wrapper {
grid-template-columns: 1fr;
}

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

h2 {
font-size: 22px;
}

.location-content, .contact-wrapper, .service-detail-item {
grid-template-columns: 1fr;
}

.service-detail-item:nth-child(even) {
direction: ltr;
}

.footer-bottom {
flex-direction: column;
text-align: center;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

section {
padding: 35px 15px;
}

.hero-modern {
padding: 45px 15px;
}

.hero-text h1 {
font-size: 26px;
}

.hero-text p {
font-size: 15px;
}

.hero-buttons {
flex-direction: column;
}

.hero-buttons .btn,
.hero-buttons .btn-outline {
width: 100%;
text-align: center;
}

.page-hero h1 {
font-size: 24px;
}

h2 {
font-size: 20px;
}

h3 {
font-size: 16px;
}

body {
font-size: 14px;
}

.services-grid,
.process-grid,
.industries-grid,
.testimonials-slider,
.pricing-grid,
.rebrand-reasons,
.considerations-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.btn {
padding: 10px 22px;
font-size: 13px;
}

.cookie-content {
flex-direction: column;
text-align: center;
}

.cookie-buttons {
justify-content: center;
}

.thankyou-content h1, .error-content h1 {
font-size: 24px;
}

.error-code {
font-size: 72px;
}

.thankyou-actions, .error-actions {
flex-direction: column;
}

.thankyou-actions .btn, .error-actions .btn {
width: 100%;
}

.cta-content h2 {
font-size: 26px;
}

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

@media (max-width: 320px) {
.logo {
font-size: 16px;
}

.hero-text h1 {
font-size: 22px;
}

.page-hero h1 {
font-size: 20px;
}

h2 {
font-size: 18px;
}

body {
font-size: 13px;
}

.service-card,
.process-item,
.industry-item,
.testimonial-card,
.pricing-card,
.timeline-item,
.reason-item,
.consideration,
.rebrand-step {
padding: 18px;
}

.contact-form-wrapper {
padding: 20px;
}

.hero-card {
padding: 20px;
}

.stat-item {
padding: 20px;
}

.service-icon,
.card-icon {
font-size: 28px;
}
}
