* {
    margin: 0;
  padding: 0;
   box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --success-color: #059669;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --shadow-small: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-medium: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-large: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-small);
               position: sticky;
  top: 0;
  z-index: 1000;
}

.main-navigation {


         padding :    0;


}

.nav-container {
       max-width: 1200px;
  margin: 0 auto;
    display     :flex;
	justify-content :  space-between;
   align-items: center;
			padding: 1rem 2rem;
}

.logo-section .site-logo {

   height: 45px;
 width:    auto;


}

.nav-menu {
  display: flex;
}

.nav-links {
  display: flex;
    list-style: none;
  gap    :  2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
    font-weight  :500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
    position    :  absolute;
    width: 0;
  height: 2px;
  bottom: -5px;
  left :     0;
  background: var(--gradient-primary);
  transition   :  width 0.3s ease;
}

.nav-links a:hover::after {
    width   :       100%;
}

.nav-burger {
  display: none;
   flex-direction: column;
   cursor: pointer;
   z-index: 1001;
}


.nav-burger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
	transition: 0.3s;
}

.nav-burger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3)  {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero-section {
  background: var(--gradient-primary);
  color: white;
          padding: 6rem 0;
  min-height: 80vh;
    display: flex;
          align-items: center;
}

.hero-content {
   max-width: 1200px;
   margin  :0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-text h1 
 {
       font-size    :   3.5rem;
      font-weight: bold;
   margin-bottom   :1.5rem;
	line-height: 1.2;
     }

.hero-text p {


   font-size   :        1.2rem;
       margin-bottom: 2rem;
	opacity: 0.9;


}

.hero-buttons {
  display: flex;
  gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn
	{
  padding: 1rem 2rem;
   border-radius: 8px;
    text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;


}

.primary-btn {
   background:white;
     color: var(--primary-color);
       border: 2px solid white;

}

.primary-btn:hover
	{
    background    :transparent; 
	   color: white;
}

.secondary-btn {
    background: transparent;
   color: white;
  border: 2px solid white;
}

.secondary-btn:hover   {
                    background: white;
  color: var(--primary-color);
}

.hero-image img {
    width: 100%;
   border-radius: 12px;
  box-shadow: var(--shadow-large);
	
}

.section-container  {
    max-width: 1200px;
      margin :        0 auto;
       padding: 0 2rem;
}

.services-section, .expertise-section, .contact-section {
   padding: 6rem 0;
}

.services-section h2, .expertise-section h2, .contact-section h2 {
	text-align: center;
    font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.services-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
       gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-white);
   border-radius: 12px;
    padding: 2rem;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
     transform: translateY(-8px);
  box-shadow: var(--shadow-large);}

.service-card img    {
   border-radius   :     8px;
    margin-bottom    :        1.5rem;
    height: 200px;
  object-fit: cover;
       width: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
		margin-bottom: 1rem;
	  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.expertise-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expertise-text h2 {
  text-align: left;
          margin-bottom: 1.5rem; 
	
}

.expertise-text p {
	font-size: 1.1rem;
  color: var(--text-light);
    margin-bottom: 2rem;
}

.expertise-list {
   list-style: none;
}  

.expertise-list li {
     padding: 0.8rem 0;
     position: relative;
      padding-left: 2rem;
     color: var(--text-light);
}

.expertise-list li::before {
	  content: "✓";
	    position:      absolute;
	  left: 0;
	  top: 0.8rem;
	  color: var(--success-color);
	          font-weight: bold;

     }

.expertise-image img {
     width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.cta-section {
  background: var(--gradient-primary);
  color: white;
    text-align: center;
	padding: 5rem 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
         padding     :      0 2rem;
}

.cta-content h2 {
  font-size: 2.5rem;
   margin-bottom: 1rem; 

}

.cta-content p {
   font-size: 1.2rem;
          margin-bottom: 2rem;
   opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--primary-color);
    padding: 1.2rem 3rem;
   border-radius: 8px;
    text-decoration    :     none;
  font-weight: 600;
     transition: all 0.3s ease;
}

.cta-button:hover {
	  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);}

.contact-content {
 display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3


{
    font-size: 1.5rem;
          margin-bottom   :    2rem;
  color: var(--text-dark);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item strong {
   display: block;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-light);
    line-height     : 1.6;
}

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius :12px;
  box-shadow: var(--shadow-medium);
}

.form-group {
               margin-bottom: 1.5rem;
}

.form-group label {
   display :  block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
    padding  :       0.8rem;
  border: 2px solid var(--border-light);
	border-radius: 6px;
  font-size: 1rem;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
     outline: none;
	  border-color: var(--primary-color);
}

.form-submit {
  background: var(--gradient-primary);
  color: white;
    padding    :       1rem 2rem;
    border :        none;
   border-radius: 6px;
   font-size: 1.1rem;
               font-weight: 600;
  cursor   :      pointer;
   transition:     all 0.3s ease;
    width     :    100%; 

}

.form-submit:hover   {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.site-footer {
  background: var(--text-dark);
    color: white;
  padding: 3rem 0 1rem;
}

.footer-content  {
    max-width: 1200px;
               margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  padding: 0 2rem;
}

.footer-section h4   {
    font-size  :    1.2rem;
  margin-bottom: 1rem;
   color: white;
}

.footer-logo {
   height: 40px;
					width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem; 

}

.footer-section p {
	    color: #d1d5db;
    line-height: 1.6;
	

}

.footer-links {
  list-style: none;
}

.footer-links li {

    margin-bottom: 0.5rem;
	}

.footer-links a {
    color :#d1d5db;
  text-decoration: none;
    transition   :   color 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

.footer-bottom{
    border-top: 1px solid #374151;
  margin-top: 2rem;
        padding-top: 1rem;
  text-align: center;
	max-width: 1200px;
       margin-left: auto;
  margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
	
}

.footer-bottom p {
	color: #9ca3af;
	font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        box-shadow: var(--shadow-large);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .services-section h2,
    .expertise-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .primary-btn,
    .secondary-btn,
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
  background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.9)), url('../diagrams/market_response_coaching_1.webp') center/cover;
 color: white;
  padding: 8rem 0 5rem;
   text-align: center;
   position: relative;
}

.about-hero-content h1 {
  font-size: 4rem;
         font-weight: 700;
   margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero-content p {
   font-size: 1.4rem;
   opacity     :    0.95;
	 max-width: 600px;
  margin: 0 auto;
}

.company-story {
 padding: 6rem 0;
  background: var(--bg-white);
}

.story-content {

	    display: grid;
  grid-template-columns: 1.2fr 0.8fr;
     gap  :        4rem;
	align-items: center;
}

.story-text h2 {
       font-size   :    2.5rem;
  color: var(--text-dark);
	margin-bottom: 2rem;
     }

.story-text p {
  font-size  :       1.1rem;
  color: var(--text-light);
   line-height  : 1.8;
    margin-bottom: 1.5rem;
	}

.story-image img {
    width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow-large);
   transition: transform 0.3s ease;
}

.story-image img:hover {
  transform: scale(1.02);
}

.values-section {
  background: var(--bg-light);
   padding: 6rem 0;
}

.values-section h2		{
	text-align: center;
   font-size: 2.8rem;
	 margin-bottom: 4rem;
  color: var(--text-dark);
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
	
}

.value-card {
  background     : white; 
        padding: 2.5rem; 
	border-radius: 12px; 
    text-align: center; 
  box-shadow: var(--shadow-medium); 
  transition: all 0.3s ease; 
	position: relative; 
  overflow  :     hidden;
}

.value-card::before {
  content: '';
   position     :  absolute;
   top: 0;
   left: 0;
    width   :     100%;
  height: 4px;
  background: var(--gradient-primary);
}

.value-card:hover 
 {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.value-card h3 {
	font-size: 1.6rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
   line-height: 1.6;

}

.expertise-areas {


        padding: 6rem 0; 
    background: white;


}

.expertise-layout {

  display: grid;
               grid-template-columns: 0.9fr 1.1fr;
  gap   :      5rem;
  align-items: start;


}

.expertise-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 3rem; 
	
}

.expertise-item {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  background: var(--bg-light);
	 border-radius: 0 8px 8px 0;
}

.expertise-item h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom   :      0.8rem;
}

.expertise-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.team-approach {
  background: var(--bg-light);
  padding: 6rem 0;
}

.team-approach h2 {
    text-align: center;
   font-size: 2.8rem;
   margin-bottom: 4rem;
  color: var(--text-dark);
}

.approach-content {

   display: grid;
	grid-template-columns    :       1.3fr 0.7fr;
  gap: 4rem;
    align-items: start;
}

.approach-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
        margin-bottom: 3rem;
}

.approach-pillars {

	  display: grid;
               gap: 2rem;
}

.pillar {
    background: white;
   padding: 2rem;
   border-radius: 10px;
  box-shadow: var(--shadow-small);
}

.pillar h4 {
  color: var(--primary-color);
	               font-size:    1.2rem;
	      margin-bottom: 1rem;
}

.pillar p {
  color: var(--text-light);
  line-height: 1.5;
}

.approach-visual img {
    width: 100%;
 border-radius: 15px;
  box-shadow: var(--shadow-medium);
}

.success-metrics {
  background: var(--gradient-primary);
  color: white;
  padding   :     5rem 0;
    text-align    :   center;
}

.success-metrics h2 {
  font-size: 2.8rem;
   margin-bottom     :     4rem; 

}

.metrics-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
}

.metric-item {
   text-align  :    center;
}

.metric-number {
   font-size: 4rem;
 font-weight: bold;
   margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
	}

.metric-label


{
   font-size: 1.1rem;
  opacity: 0.9;
}

.commitment-section   {
                    padding: 6rem 0;
   background: white;
}

.commitment-content {
 display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
   align-items: center;
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem; 

}  

.commitment-image img {
       width   :   100%;
    border-radius: 15px;
  box-shadow: var(--shadow-medium);}

.commitment-text h2 {
   font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.commitment-text p {
   font-size: 1.1rem;
     color: var(--text-light);
      line-height :   1.7;
     margin-bottom: 1.5rem;
}

.thankyou-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
 padding: 8rem 0 6rem;
   text-align    :    center;
}

.thankyou-content    {

	   max-width: 800px;
  margin: 0 auto;
    padding: 0 2rem;}

.success-icon {
   margin-bottom: 2rem;


} 

.checkmark-circle {
  width: 120px;
  height: 120px;
    border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
 margin: 0 auto;
  display: flex;
    align-items: center;
  justify-content: center;
   position: relative;
			animation: scaleIn 0.8s ease-out;
}

.checkmark {
   width: 60px;
   height: 60px;
  position: relative;
	
} 

.checkmark::before {
  content: '✓';
    font-size: 3rem;
	font-weight: bold;
   color: white;
	position: absolute;
   top:        50%;
  left: 50%;
  transform: translate(-50%, -50%);
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-content h1 {
    font-size: 3.5rem;
  margin-bottom: 1rem;
    font-weight: 700;
}



.thankyou-subtitle {
    font-size: 1.3rem;
   opacity :   0.9;
  margin-bottom: 3rem;
}

.thankyou-message {
  background: rgba(255, 255, 255, 0.1);
	    padding: 2.5rem;
	    border-radius: 15px;
	  margin-bottom   : 4rem;
	  backdrop-filter: blur(10px);
}

.thankyou-message h2 {
   font-size: 2rem;
   margin-bottom: 1.5rem;
}

.thankyou-message p   {
      font-size: 1.1rem;
    line-height: 1.7;
   opacity: 0.95;

}

.next-steps {
   display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-bottom: 4rem;
}

.step-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
    border-radius: 12px;
   text-align: left;
  backdrop-filter: blur(10px);
          transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);


}

.step-number {
    width: 40px;
  height: 40px;
    background: white;
  color: var(--primary-color);
    border-radius: 50%;
   display: flex;
      align-items: center;
  justify-content: center;
    font-weight: bold;
  font-size  :       1.2rem;
 margin-bottom: 1rem;
}

.step-content h3
	{


    font-size     : 1.3rem;
  margin-bottom: 0.8rem;


} 

.step-content p {
   opacity: 0.9;
    line-height: 1.6;
}

.thankyou-actions
	{
  display   :   flex;
    gap: 1.5rem;
    justify-content: center;
  flex-wrap: wrap;
}

.while-you-wait {
   padding: 6rem 0;
  background: var(--bg-light);
}

.while-you-wait h2 {
    text-align: center;
      font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.wait-content {
   display: grid;
   grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.wait-text h3 {

   font-size :1.8rem;
  color: var(--text-dark);
               margin-bottom: 1.5rem;}

.wait-text p {
    font-size  :      1.1rem;
  color: var(--text-light);
   line-height: 1.7;
    margin-bottom: 2rem;
}

.preparation-tips {
    background: white;
	 padding  :   2rem;
   border-radius    :    10px;
  box-shadow: var(--shadow-small);
}

.preparation-tips h4 {
  color: var(--primary-color);
   margin-bottom: 1rem;
}

.preparation-tips ul {
	padding-left: 1.5rem;
}

.preparation-tips li {
  color: var(--text-light);
  margin-bottom    :        0.8rem;
    line-height: 1.6;
}

.wait-image img {
      width: 100%;
  border-radius   :        12px;
  box-shadow: var(--shadow-medium);
}

.emergency-contact {
  background: var(--text-dark);
    color: white;
	 padding: 4rem 0;
   text-align: center;
}

.emergency-content {
  max-width: 800px;
   margin: 0 auto;
  padding: 0 2rem;
}

.emergency-content h2 {
  font-size     :      2.2rem;
    margin-bottom: 1rem;
}

.emergency-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
                    opacity :   0.9;

}

.emergency-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
               flex-wrap   :     wrap;
}  

.contact-method {
   text-align: center;
}

.contact-method strong {
    display: block;
  color: var(--accent-color);
   margin-bottom: 0.5rem;
 font-size :   1.1rem;
}

.contact-method span {
  font-size: 1.2rem;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-content,
    .expertise-layout,
    .approach-content,
    .commitment-content,
    .wait-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid,
    .metrics-grid,
    .next-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-message,
    .step-item {
        padding: 1.5rem;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark::before {
        font-size: 2rem;
    }
    
    .emergency-info {
        gap: 2rem;
        flex-direction: column;
    }
    
    .approach-pillars {
        gap: 1.5rem;
    }
    
    .pillar {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 5rem 0 3rem;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .story-text h2,
    .team-approach h2,
    .values-section h2 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-subtitle {
        font-size: 1.1rem;
    }
    
    .metric-number {
        font-size: 3rem;
    }
    
    .value-card,
    .expertise-item,
    .pillar {
        padding: 1.5rem;
    }
}