@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.3;
}

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

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

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

.section {
    padding: 100px 0;
}

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

.section-gray {
    background: var(--gray-100);
}

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

.section-header .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-header .subtitle::before {
    left: -20px;
}

.section-header .subtitle::after {
    right: -20px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(235, 5, 5, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(235, 5, 5, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

.btn-dark:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
}

.topbar {
    background: var(--secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.topbar-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.topbar-contact a {
    color: var(--gray-300);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-contact a:hover {
    color: var(--primary);
}

.topbar-cta .btn {
    padding: 8px 20px;
    font-size: 12px;
}

.navbar {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

.navbar-logo img {
    height: 70px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo img {
    height: 55px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.navbar-menu>li {
    position: relative;
}

.navbar-menu>li>a {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: var(--radius-sm);
}

.navbar-menu>li>a:hover,
.navbar-menu>li.active>a {
    color: var(--primary);
    background: rgba(235, 5, 5, 0.05);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--gray-200);
}

.navbar-menu>li:hover>.dropdown-menu,
.navbar-menu>li.dropdown-open>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(235, 5, 5, 0.05);
    color: var(--primary);
    padding-left: 30px;
}

.sub-dropdown {
    position: relative;
}

.sub-dropdown>.dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
}

.navbar-cta .btn {
    padding: 10px 24px;
    font-size: 13px;
}

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

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('../images/background.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(235, 5, 5, 0.15);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(235, 5, 5, 0.2);
}

.hero h1 {
    font-size: 58px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center; 
    text-align: center;
}

.hero-stat h3 {
    font-size: 36px;
    color: var(--primary-light);
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-stat p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 0;
}

.hero-shapes {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(235, 5, 5, 0.08);
    animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
    width: 500px;
    height: 500px;
    right: 0;
    top: -250px;
}

.hero-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    right: 200px;
    top: 0;
    animation-delay: -2s;
    background: rgba(235, 5, 5, 0.05);
}

.hero-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    right: -50px;
    top: 200px;
    animation-delay: -4s;
    background: rgba(255, 255, 255, 0.03);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(235, 5, 5, 0.08), rgba(235, 5, 5, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card .learn-more:hover {
    gap: 10px;
}

.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20l20 0 0 20-20 0z'/%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-300);
    font-weight: 500;
}

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

.why-us-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.why-us-content p {
    color: var(--gray-500);
    font-size: 17px;
    margin-bottom: 32px;
}

.why-us-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-us-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-us-list .check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(235, 5, 5, 0.1), rgba(235, 5, 5, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    margin-top: 2px;
}

.why-us-list h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.why-us-list p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--gray-500);
}

.why-us-image {
    position: relative;
}

.why-us-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/background3.jpg') center center / cover no-repeat;
    padding: 60px 40px;
    color: var(--white);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.why-us-image-main h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 16px;
}

.why-us-image-main p {
    color: var(--gray-300);
    font-size: 16px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.experience-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
}

.experience-badge small {
    font-size: 13px;
    opacity: 0.9;
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trade-card {
    padding: 30px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    background: var(--white);
}

.trade-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trade-card .trade-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.trade-card:hover .trade-icon {
    background: var(--primary);
    color: var(--white);
}

.trade-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.trade-card p {
    font-size: 13px;
    color: var(--gray-500);
}

.testimonials {
    background: var(--gray-100);
}

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

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 36px;
}

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

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-sm);
    background: rgba(235, 5, 5, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.contact-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

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

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

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-fast);
    color: var(--gray-700);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(235, 5, 5, 0.1);
}

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

.footer {
    background: var(--secondary);
    color: var(--gray-300);
    padding-top: 80px;
}

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

.footer-about img {
    height: 45px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.page-hero p {
    font-size: 18px;
    color: var(--gray-300);
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin-top: 20px;
    position: relative;
}

.breadcrumb a {
    color: var(--gray-400);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb .separator {
    color: var(--gray-500);
}

.breadcrumb .current {
    color: var(--primary-light);
    font-size: 14px;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.page-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

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

.page-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 24px;
}

.page-content ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-600);
}

.page-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.info-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 20px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-card .price span {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-card .price-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

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

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

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

.sample-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.sample-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sample-card-header {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    padding: 40px 24px;
    text-align: center;
}

.sample-card-header .icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.sample-card-header h4 {
    color: var(--white);
    font-size: 18px;
}

.sample-card-body {
    padding: 24px;
}

.sample-card-body p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    padding: 24px;
    position: relative;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
    font-size: 20px;
}

.process-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-500);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-header {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    padding: 30px;
    position: relative;
}

.blog-card-date {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-card-body p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-item .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-sm);
    background: rgba(235, 5, 5, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.feature-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 0;
}

.tick-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 24px;
}

.tick-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-600);
}

.tick-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-list {
    padding-left: 1.5rem;
    line-height: 1.8;
}

.service-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .service-list {
        padding-left: 2.5rem;
        font-size: 0.95rem;
    }

    .service-list li {
        margin-bottom: 0.6rem;
        line-height: 1.6;
    }
}
/* ------------------------------------------------------------------
   Body copy: space between consecutive paragraphs.

   The reset at the top of this file sets "* { margin: 0 }", and nothing
   restores it for <p>, so stacked paragraphs render flush against each
   other with no visual break.

   Scoped to .prose and written as "p + p" so it only affects a paragraph
   that follows another paragraph. The first paragraph is untouched, which
   keeps the existing spacing between a heading and the text below it
   exactly as it is.
   ------------------------------------------------------------------ */
.prose p + p {
    margin-top: 18px;
}

/* ------------------------------------------------------------------
   Service cards: whole-card links, and cards with no trailing link.

   ".service-card p" carries "margin-bottom: 20px" to separate the text
   from the "Learn More" link beneath it. On a card that has no such link
   the paragraph is the last child, and that margin becomes dead space at
   the bottom of the card — so it is removed in exactly that case.

   "a.service-card" lets the whole card be a link instead of only the
   "Learn More" text. The global "a" rule already gives it inherited colour
   and no underline, so only the box behaviour needs restoring. Scoped to
   the element so existing div-based cards are untouched.
   ------------------------------------------------------------------ */
.service-card p:last-child {
    margin-bottom: 0;
}

a.service-card {
    display: block;
}

/* An info-card that links to a document. Only the box behaviour needs setting:
   the global "a" rule already supplies inherited colour and no underline.

   The heading turns brand-red on hover so the tile reads as clickable. Scoped to
   the anchor, so a project without an attached document keeps the plain
   hover treatment and does not imply a link that is not there. */
a.info-card {
    display: block;
}

a.info-card h4 {
    transition: var(--transition-fast);
}

a.info-card:hover h4 {
    color: var(--primary);
}
