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

:root {
--indigo: #4f46e5;
--indigo-dark: #3730a3;
--coral: #ff6b6b;
--slate: #1e293b;
--cream: #fef3e2;
--white: #ffffff;
--gray: #64748b;
--light-gray: #f1f5f9;
}

body {
font-family: 'Space Grotesk', sans-serif;
color: var(--slate);
line-height: 1.6;
font-size: 15px;
overflow-x: hidden;
background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Syne', sans-serif;
font-weight: 700;
line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

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

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

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

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--slate);
color: var(--white);
padding: 18px;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.3s ease;
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.privacy-popup.show {
transform: translateY(0);
}

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

.privacy-content p {
flex: 1;
margin: 0;
font-size: 13px;
line-height: 1.5;
}

.privacy-btn {
background: var(--coral);
color: var(--white);
border: none;
padding: 10px 28px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 13px;
transition: all 0.3s ease;
}

.privacy-btn:hover {
background: #ff5252;
transform: translateY(-1px);
}

.header {
background: var(--white);
padding: 12px 0;
border-bottom: 1px solid var(--light-gray);
position: relative;
z-index: 1000;
transition: transform 0.3s ease;
}

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

.logo {
font-family: 'Syne', sans-serif;
font-size: 0.9rem;
font-weight: 800;
color: var(--indigo);
letter-spacing: -0.5px;
}

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

.nav-link {
font-weight: 500;
font-size: 14px;
color: var(--slate);
position: relative;
padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
color: var(--indigo);
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px;
background: var(--coral);
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 24px;
height: 2px;
background: var(--slate);
transition: all 0.3s ease;
}

.mega-hero {
background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%);
padding: 100px 0 80px;
position: relative;
overflow: hidden;
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 400px;
height: 400px;
background: var(--coral);
top: -100px;
right: -100px;
}

.shape-2 {
width: 300px;
height: 300px;
background: var(--cream);
bottom: -80px;
left: -80px;
}

.shape-3 {
width: 200px;
height: 200px;
background: var(--white);
top: 50%;
right: 20%;
}

.mega-hero-content {
position: relative;
z-index: 2;
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,0.15);
color: var(--white);
padding: 8px 20px;
border-radius: 30px;
font-size: 13px;
font-weight: 600;
margin-bottom: 30px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.2);
}

.mega-hero-title {
color: var(--white);
font-size: 4rem;
margin-bottom: 25px;
line-height: 1.1;
}

.title-line {
display: block;
}

.gradient-text {
background: linear-gradient(135deg, var(--cream) 0%, var(--coral) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.mega-hero-text {
color: rgba(255,255,255,0.9);
font-size: 1.2rem;
margin-bottom: 40px;
line-height: 1.7;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-cta-group {
display: flex;
gap: 15px;
justify-content: center;
margin-bottom: 60px;
flex-wrap: wrap;
}

.btn-hero-primary {
background: var(--coral);
color: var(--white);
padding: 14px 36px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
border: 2px solid var(--coral);
}

.btn-hero-primary:hover {
background: #ff5252;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(255,107,107,0.3);
}

.btn-hero-secondary {
background: transparent;
color: var(--white);
padding: 14px 36px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: 2px solid var(--white);
transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
background: var(--white);
color: var(--indigo);
transform: translateY(-2px);
}

.hero-stats {
display: flex;
justify-content: center;
gap: 50px;
flex-wrap: wrap;
}

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

.stat-number {
font-size: 2.5rem;
font-weight: 800;
color: var(--coral);
font-family: 'Syne', sans-serif;
line-height: 1;
margin-bottom: 8px;
}

.stat-label {
color: rgba(255,255,255,0.8);
font-size: 13px;
font-weight: 500;
}

.section-header {
margin-bottom: 50px;
}

.section-header.centered {
text-align: center;
}

.section-label {
display: inline-block;
color: var(--coral);
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
}

.section-header h2 {
color: var(--slate);
}

.expertise-showcase {
padding: 80px 0;
background: var(--white);
}

.expertise-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.exp-card {
background: var(--cream);
padding: 35px 28px;
border-radius: 16px;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.exp-card:hover {
transform: translateY(-5px);
border-color: var(--coral);
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.exp-icon {
width: 60px;
height: 60px;
background: var(--white);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.exp-icon i {
font-size: 28px;
color: var(--indigo);
}

.exp-card h3 {
margin-bottom: 12px;
color: var(--slate);
font-size: 1.3rem;
}

.exp-card p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

.featured-showcase {
padding: 80px 0;
background: var(--light-gray);
}

.showcase-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
margin-bottom: 40px;
}

.showcase-item {
position: relative;
border-radius: 16px;
overflow: hidden;
aspect-ratio: 1;
}

.showcase-item.large {
grid-column: span 1;
grid-row: span 2;
aspect-ratio: 4/5;
}

.showcase-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.showcase-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(30,41,59,0.95) 0%, transparent 100%);
padding: 30px;
transform: translateY(10px);
transition: transform 0.3s ease;
}

.showcase-item:hover img {
transform: scale(1.05);
}

.showcase-item:hover .showcase-overlay {
transform: translateY(0);
}

.showcase-tag {
display: inline-block;
background: var(--coral);
color: var(--white);
padding: 5px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 10px;
}

.showcase-overlay h3 {
color: var(--white);
margin-bottom: 8px;
font-size: 1.4rem;
}

.showcase-overlay p {
color: rgba(255,255,255,0.85);
font-size: 14px;
}

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

.btn-text {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--indigo);
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

.btn-text:hover {
gap: 12px;
color: var(--coral);
}

.btn-text i {
font-size: 18px;
}

.approach-section {
padding: 80px 0;
background: var(--white);
}

.approach-layout {
max-width: 900px;
margin: 0 auto;
}

.approach-content .section-label {
display: block;
margin-bottom: 12px;
}

.approach-content h2 {
margin-bottom: 20px;
}

.approach-intro {
font-size: 1.05rem;
color: var(--gray);
line-height: 1.8;
margin-bottom: 40px;
}

.approach-steps {
display: grid;
gap: 25px;
}

.step-item {
display: flex;
gap: 20px;
align-items: flex-start;
padding: 25px;
background: var(--cream);
border-radius: 12px;
transition: all 0.3s ease;
}

.step-item:hover {
transform: translateX(5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-icon {
width: 50px;
height: 50px;
background: var(--indigo);
color: var(--white);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 1.2rem;
font-family: 'Syne', sans-serif;
flex-shrink: 0;
}

.step-content h4 {
margin-bottom: 8px;
color: var(--slate);
}

.step-content p {
color: var(--gray);
font-size: 14px;
line-height: 1.6;
}

.testimonials-modern {
padding: 80px 0;
background: var(--slate);
}

.testimonials-modern .section-header {
color: var(--white);
}

.testimonials-modern .section-label {
color: var(--coral);
}

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

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

.testimonial-modern {
background: rgba(255,255,255,0.05);
padding: 35px;
border-radius: 16px;
border: 1px solid rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
}

.quote-icon {
color: var(--coral);
font-size: 2.5rem;
margin-bottom: 20px;
opacity: 0.5;
}

.testimonial-quote {
color: var(--white);
font-size: 15px;
line-height: 1.8;
margin-bottom: 25px;
font-style: italic;
}

.author-info strong {
display: block;
color: var(--white);
font-weight: 600;
margin-bottom: 4px;
}

.author-info span {
color: var(--coral);
font-size: 13px;
}

.why-choose {
padding: 80px 0;
background: var(--cream);
}

.why-layout {
max-width: 900px;
margin: 0 auto;
}

.why-content .section-label {
display: block;
margin-bottom: 12px;
}

.why-content h2 {
margin-bottom: 40px;
}

.why-points {
display: grid;
gap: 25px;
}

.why-point {
display: flex;
gap: 18px;
align-items: flex-start;
}

.why-point i {
font-size: 24px;
color: var(--coral);
flex-shrink: 0;
margin-top: 2px;
}

.why-point h4 {
margin-bottom: 6px;
color: var(--slate);
}

.why-point p {
color: var(--gray);
font-size: 14px;
line-height: 1.6;
}

.industries-served {
padding: 80px 0;
background: var(--white);
}

.industries-grid {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
}

.industry-tag {
background: var(--light-gray);
color: var(--slate);
padding: 12px 24px;
border-radius: 30px;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
border: 2px solid transparent;
}

.industry-tag:hover {
background: var(--indigo);
color: var(--white);
border-color: var(--indigo);
transform: translateY(-2px);
}

.final-cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--coral) 0%, #ff5252 100%);
}

.final-cta-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.final-cta-content h2 {
color: var(--white);
font-size: 2.5rem;
margin-bottom: 20px;
}

.final-cta-content p {
color: rgba(255,255,255,0.95);
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 35px;
}

.btn-final-cta {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--white);
color: var(--coral);
padding: 16px 40px;
border-radius: 8px;
font-weight: 700;
font-size: 16px;
transition: all 0.3s ease;
border: 2px solid var(--white);
}

.btn-final-cta:hover {
background: transparent;
color: var(--white);
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn-final-cta i {
font-size: 20px;
}

.footer {
background: var(--slate);
color: var(--white);
padding: 28px 0;
}

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

.footer-links {
display: flex;
justify-content: center;
gap: 22px;
margin-bottom: 14px;
flex-wrap: wrap;
}

.footer-links a {
font-size: 13px;
color: var(--gray);
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--coral);
}

.copyright {
font-size: 13px;
color: var(--gray);
}

.page-hero {
background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%);
color: var(--white);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
margin-bottom: 15px;
font-size: 2.8rem;
}

.page-hero p {
font-size: 1.1rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; }
body { font-size: 14px; }

.container {
padding: 0 16px;
}

.menu-toggle {
display: flex;
}

.nav {
position: fixed;
top: 56px;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transform: translateY(-100%);
opacity: 0;
pointer-events: none;
transition: all 0.3s ease;
}

.nav.active {
transform: translateY(0);
opacity: 1;
pointer-events: all;
}

.mega-hero {
padding: 60px 0 50px;
}

.mega-hero-title {
font-size: 2.5rem;
}

.mega-hero-text {
font-size: 1rem;
}

.hero-stats {
gap: 30px;
}

.stat-number {
font-size: 2rem;
}

.expertise-showcase,
.featured-showcase,
.approach-section,
.testimonials-modern,
.why-choose,
.industries-served,
.final-cta {
padding: 60px 0;
}

.section-header {
margin-bottom: 35px;
}

.expertise-cards {
grid-template-columns: 1fr;
gap: 20px;
}

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

.showcase-item.large {
grid-column: span 1;
grid-row: span 1;
aspect-ratio: 1;
}

.testimonials-slider {
grid-template-columns: 1fr;
gap: 20px;
}

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

.page-hero {
padding: 50px 0;
}

.page-hero h1 {
font-size: 2.2rem;
}
}

@media (max-width: 480px) {
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
body { font-size: 13px; }

.mega-hero-title {
font-size: 2rem;
}

.hero-cta-group {
flex-direction: column;
}

.btn-hero-primary,
.btn-hero-secondary {
width: 100%;
text-align: center;
}

.hero-stats {
gap: 25px;
}

.stat-number {
font-size: 1.8rem;
}

.exp-card {
padding: 28px 22px;
}

.showcase-overlay {
padding: 20px;
}

.step-item {
padding: 20px;
}

.testimonial-modern {
padding: 28px;
}

.final-cta-content h2 {
font-size: 1.8rem;
}
}

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

h1 { font-size: 1.6rem; }
h2 { font-size: 1.3rem; }
body { font-size: 12px; }

.mega-hero {
padding: 50px 0 40px;
}

.mega-hero-title {
font-size: 1.7rem;
}

.expertise-showcase,
.featured-showcase,
.approach-section,
.testimonials-modern,
.why-choose,
.industries-served,
.final-cta {
padding: 50px 0;
}

.btn-hero-primary,
.btn-hero-secondary,
.btn-final-cta {
padding: 12px 28px;
font-size: 14px;
}

.exp-card {
padding: 22px 18px;
}

.stat-number {
font-size: 1.6rem;
}
}


.portfolio-filter-section {
padding: 40px 0;
background: var(--white);
border-bottom: 1px solid var(--light-gray);
}

.filter-controls {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
}

.filter-btn {
background: var(--light-gray);
border: none;
padding: 10px 24px;
border-radius: 25px;
cursor: pointer;
font-weight: 500;
font-size: 14px;
transition: all 0.3s ease;
color: var(--slate);
}

.filter-btn:hover,
.filter-btn.active {
background: var(--indigo);
color: var(--white);
}

.portfolio-showcase {
padding: 60px 0;
background: var(--white);
}

.portfolio-masonry {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.portfolio-card {
background: var(--cream);
border-radius: 16px;
overflow: hidden;
transition: all 0.3s ease;
}

.portfolio-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.portfolio-img {
overflow: hidden;
aspect-ratio: 4/3;
}

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

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

.portfolio-info {
padding: 28px;
}

.project-tag {
display: inline-block;
background: var(--indigo);
color: var(--white);
padding: 5px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 12px;
}

.portfolio-info h3 {
margin-bottom: 12px;
color: var(--slate);
font-size: 1.4rem;
}

.portfolio-info p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

.services-pricing {
padding: 80px 0;
background: var(--light-gray);
}

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

.pricing-card {
background: var(--white);
border-radius: 16px;
padding: 35px 28px;
transition: all 0.3s ease;
border: 2px solid transparent;
position: relative;
}

.pricing-card:hover {
transform: translateY(-8px);
border-color: var(--coral);
box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.pricing-card.featured {
border-color: var(--indigo);
box-shadow: 0 15px 40px rgba(79,70,229,0.15);
}

.featured-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--coral);
color: var(--white);
padding: 6px 18px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.pricing-header {
text-align: center;
margin-bottom: 30px;
}

.pricing-header i {
font-size: 3rem;
color: var(--indigo);
margin-bottom: 15px;
}

.pricing-card.featured .pricing-header i {
color: var(--coral);
}

.pricing-header h3 {
margin-bottom: 15px;
color: var(--slate);
font-size: 1.5rem;
}

.price-tag {
font-size: 2.5rem;
font-weight: 800;
color: var(--slate);
font-family: 'Syne', sans-serif;
}

.pricing-features {
list-style: none;
margin-bottom: 30px;
}

.pricing-features li {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 0;
color: var(--gray);
font-size: 14px;
border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
border-bottom: none;
}

.pricing-features i {
color: var(--coral);
font-size: 18px;
flex-shrink: 0;
}

.btn-pricing {
display: block;
width: 100%;
text-align: center;
background: var(--indigo);
color: var(--white);
padding: 14px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
}

.btn-pricing:hover {
background: var(--indigo-dark);
transform: translateY(-2px);
}

.pricing-card.featured .btn-pricing {
background: var(--coral);
}

.pricing-card.featured .btn-pricing:hover {
background: #ff5252;
}

.about-hero-section {
padding: 80px 0;
background: var(--white);
}

.about-hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.about-hero-content h2 {
margin-bottom: 25px;
font-size: 2.5rem;
}

.about-hero-content p {
color: var(--gray);
line-height: 1.8;
margin-bottom: 20px;
font-size: 15px;
}

.about-hero-img {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-hero-img img {
width: 100%;
}

.skills-section {
padding: 80px 0;
background: var(--cream);
}

.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 25px;
}

.skill-card {
background: var(--white);
padding: 30px 25px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}

.skill-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.skill-card i {
font-size: 2.5rem;
color: var(--coral);
margin-bottom: 18px;
}

.skill-card h3 {
margin-bottom: 10px;
color: var(--slate);
font-size: 1.2rem;
}

.skill-card p {
color: var(--gray);
font-size: 13px;
line-height: 1.6;
}

.values-section {
padding: 80px 0;
background: var(--white);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}

.value-card {
padding: 30px;
background: var(--light-gray);
border-radius: 12px;
border-left: 4px solid var(--coral);
}

.value-card h3 {
margin-bottom: 12px;
color: var(--indigo);
font-size: 1.3rem;
}

.value-card p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

.contact-main-section {
padding: 80px 0;
background: var(--white);
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-info-block h2 {
margin-bottom: 20px;
font-size: 2.2rem;
}

.contact-info-block > p {
color: var(--gray);
margin-bottom: 35px;
line-height: 1.8;
}

.contact-details-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-detail-item {
display: flex;
gap: 18px;
align-items: flex-start;
}

.contact-detail-item i {
font-size: 1.4rem;
color: var(--coral);
margin-top: 3px;
flex-shrink: 0;
}

.contact-detail-item h4 {
margin-bottom: 6px;
color: var(--slate);
}

.contact-detail-item p {
color: var(--gray);
font-size: 14px;
}

.contact-form-block {
background: var(--cream);
padding: 40px;
border-radius: 16px;
}

.form-field {
margin-bottom: 22px;
}

.form-field label {
display: block;
margin-bottom: 8px;
font-weight: 600;
font-size: 14px;
color: var(--slate);
}

.form-field input,
.form-field textarea {
width: 100%;
padding: 12px 16px;
border: 2px solid var(--light-gray);
border-radius: 8px;
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
transition: border-color 0.3s ease;
background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus {
outline: none;
border-color: var(--indigo);
}

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

.checkbox-field {
display: flex;
align-items: flex-start;
gap: 10px;
margin-bottom: 25px;
}

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

.checkbox-field label {
font-size: 13px;
color: var(--gray);
cursor: pointer;
line-height: 1.5;
}

.checkbox-field a {
color: var(--indigo);
text-decoration: underline;
}

.btn-submit {
width: 100%;
background: var(--coral);
color: var(--white);
padding: 14px;
border-radius: 8px;
font-weight: 600;
font-size: 15px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-submit:hover {
background: #ff5252;
transform: translateY(-2px);
}

.map-embed-section {
padding: 80px 0;
background: var(--light-gray);
}

.map-wrapper {
border-radius: 16px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.faq-section {
padding: 80px 0;
background: var(--white);
}

.faq-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.faq-card {
padding: 28px;
background: var(--cream);
border-radius: 12px;
}

.faq-card h4 {
margin-bottom: 12px;
color: var(--indigo);
font-size: 1.1rem;
}

.faq-card p {
color: var(--gray);
font-size: 14px;
line-height: 1.7;
}

.thankyou-wrapper,
.error-wrapper {
min-height: calc(100vh - 160px);
display: flex;
align-items: center;
justify-content: center;
padding: 60px 0;
}

.thankyou-box,
.error-box {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.success-icon {
font-size: 4rem;
color: var(--coral);
margin-bottom: 30px;
}

.thankyou-box h1,
.error-box h1 {
margin-bottom: 20px;
font-size: 2.5rem;
color: var(--slate);
}

.thankyou-box p,
.error-box p {
color: var(--gray);
margin-bottom: 35px;
line-height: 1.8;
font-size: 1.05rem;
}

.action-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-size: 7rem;
color: var(--indigo);
margin-bottom: 20px;
font-weight: 800;
line-height: 1;
}

.error-box h2 {
margin-bottom: 15px;
font-size: 2rem;
}

.policy-page-section {
padding: 80px 0;
background: var(--white);
}

.policy-page-section h1 {
margin-bottom: 12px;
font-size: 2.8rem;
}

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

.policy-text-content {
max-width: 900px;
}

.policy-text-content h2 {
margin-top: 45px;
margin-bottom: 20px;
font-size: 2rem;
color: var(--indigo);
}

.policy-text-content h3 {
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.4rem;
color: var(--slate);
}

.policy-text-content h4 {
margin-top: 20px;
margin-bottom: 10px;
font-size: 1.1rem;
}

.policy-text-content p {
margin-bottom: 16px;
color: var(--gray);
line-height: 1.8;
}

.policy-text-content ul {
margin-bottom: 20px;
padding-left: 30px;
}

.policy-text-content li {
margin-bottom: 10px;
color: var(--gray);
line-height: 1.7;
}

@media (max-width: 768px) {
.about-hero-grid,
.contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.contact-form-block {
padding: 30px 20px;
}

.portfolio-masonry {
grid-template-columns: 1fr;
}

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

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

.action-buttons a {
width: 100%;
text-align: center;
}
}

@media (max-width: 480px) {
.about-hero-content h2 {
font-size: 2rem;
}

.thankyou-box h1,
.error-box h1 {
font-size: 2rem;
}

.error-number {
font-size: 5rem;
}

.portfolio-info {
padding: 22px;
}

.pricing-card {
padding: 28px 22px;
}

.skill-card,
.value-card,
.faq-card {
padding: 22px;
}
}

@media (max-width: 320px) {
.contact-form-block {
padding: 25px 15px;
}

.portfolio-info {
padding: 18px;
}

.pricing-card {
padding: 22px 18px;
}

.thankyou-box h1,
.error-box h1 {
font-size: 1.7rem;
}
}