/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c52e0;
    --secondary-color: #764af1;
    --gradient-start: #2c52e0;
    --gradient-end: #764af1;
    --accent-color: #00e4ff;
    --text-color: #222222;
    --text-light: #5a5a5a;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #151922;
    --gradient-primary: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 18px 36px rgba(0,0,0,0.1);
    --shadow-accent: 0 18px 36px rgba(44,82,224,0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-padding: 5%;
}

body {
    font-family: 'SF Pro Display', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.sct-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.6em;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.2rem;
    font-weight: 400;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Header & Navigation */
.sct-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.sct-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.sct-company-logo {
    width: 180px; 
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: var(--transition);
}

.sct-company-logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.sct-nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.sct-nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.05rem;
}

.sct-nav-links a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 1px;
}

.sct-nav-links a:hover:after,
.sct-nav-links a.sct-active:after {
    width: 100%;
}

.sct-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.sct-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 1px;
}

/* Button Styles */
.sct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.sct-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: scale(0);
    opacity: 0;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sct-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -2;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sct-btn:hover:before {
    filter: brightness(0.95);
}

.sct-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-accent);
}

.sct-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(44,82,224,0.3);
    color: white;
}

.sct-btn-secondary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(44,82,224,0.1);
}

.sct-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.sct-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.sct-btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Careers Hero Section */
.sct-careers-hero {
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f5f8ff 0%, #edf1fa 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.sct-careers-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="560" viewBox="0 0 1440 560" fill="none"><path d="M1440 140C1360 140 1300 70 1240 70C1180 70 1180 140 1120 140C1060 140 1060 70 1000 70C940 70 940 140 880 140C820 140 820 70 760 70C700 70 700 140 640 140C580 140 580 70 520 70C460 70 460 140 400 140C340 140 340 70 280 70C220 70 220 140 160 140C100 140 100 70 40 70C-20 70 -20 140 -80 140" stroke="%232c52e0" stroke-opacity="0.1" stroke-width="2"/></svg>');
    background-repeat: repeat;
    background-size: 1440px;
    opacity: 0.6;
}

.sct-careers-hero .sct-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.sct-careers-hero-content {
    flex: 1;
    max-width: 600px;
}

.sct-careers-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.sct-careers-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.sct-careers-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
}

.sct-careers-hero-image {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.sct-careers-hero-image:before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 80%;
    height: 80%;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.sct-careers-hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

/* Culture Section Styles */
.sct-careers-culture {
    padding: 6rem 0;
    position: relative;
    background-color: var(--bg-color);
}

.sct-careers-culture:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 90%, rgba(44,82,224,0.03) 0%, transparent 30%),
                      radial-gradient(circle at 80% 10%, rgba(118,74,241,0.03) 0%, transparent 30%);
    z-index: 0;
}

.sct-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.sct-section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.sct-section-header h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: translateX(-50%);
}

.sct-section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.sct-culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.sct-culture-item {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sct-culture-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.sct-culture-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.sct-culture-item:hover:before {
    opacity: 0.02;
}

.sct-culture-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.sct-culture-item:hover img {
    transform: scale(1.1);
}

.sct-culture-item h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.sct-culture-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Open Positions Section */
.sct-open-positions {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.sct-open-positions:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(44,82,224,0.03) 0%, transparent 30%),
                      radial-gradient(circle at 20% 80%, rgba(118,74,241,0.03) 0%, transparent 30%);
    z-index: 0;
}

.sct-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.sct-job-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.sct-job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sct-job-header {
    padding: 1.8rem 2rem;
    background: linear-gradient(to right, rgba(44,82,224,0.03), rgba(118,74,241,0.03));
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sct-job-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: var(--text-color);
}

.sct-job-type {
    background: rgba(44,82,224,0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.sct-job-details {
    padding: 2rem;
}

.sct-job-location {
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.sct-icon-location {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235a5a5a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.sct-job-description {
    margin-bottom: 2rem;
}

.sct-job-description p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.sct-job-description h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.sct-job-description ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.sct-job-description li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.2rem;
}

.sct-job-description li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sct-job-cta {
    display: flex;
    justify-content: flex-start;
}

/* Benefits Section */
.sct-benefits {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
}

.sct-benefits:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(44,82,224,0.03) 100%);
    z-index: 0;
}

.sct-benefits-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.sct-benefits-text {
    flex: 1;
}

.sct-benefits-text h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.sct-benefits-text h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.sct-benefits-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.sct-benefits-list {
    list-style: none;
}

.sct-benefits-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.sct-benefits-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232c52e0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.sct-benefits-image {
    flex: 1;
    position: relative;
}

.sct-benefits-image:after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.sct-benefits-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.sct-cta-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.sct-cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 800 800" fill="none"><circle cx="400" cy="400" r="300" stroke="white" stroke-opacity="0.1" stroke-width="3" stroke-dasharray="10 20"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.sct-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sct-cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.sct-cta-content h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 80px;
    height: 4px;
    background: white;
    border-radius: 2px;
    transform: translateX(-50%);
}

.sct-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.sct-cta-content .sct-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sct-cta-content .sct-btn-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.sct-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
    padding: 80px 20px;
    align-items: flex-start;
    justify-content: center;
}

.sct-modal-content {
    position: relative;
    background-color: white;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    animation: modalFadeIn 0.4s;
}

.sct-modal-large {
    max-width: 700px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sct-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    color: var(--text-light);
    transition: var(--transition);
}

.sct-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.sct-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.sct-modal p {
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

/* Form Styles */
.sct-modal-form {
    width: 100%;
}

.sct-form-group {
    margin-bottom: 1.5rem;
}

.sct-form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.sct-form-row .sct-form-group {
    flex: 1;
}

.sct-modal-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.required {
    color: #e53935;
    margin-left: 2px;
}

.sct-phone-input {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sct-phone-prefix {
    background-color: var(--bg-light);
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
    color: var(--text-color);
    font-weight: 500;
}

.sct-phone-input input {
    flex: 1;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.sct-modal-form input[type="text"],
.sct-modal-form input[type="tel"],
.sct-modal-form input[type="date"],
.sct-modal-form input[type="email"],
.sct-modal-form select,
.sct-modal-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-color);
    background-color: white;
    transition: var(--transition);
}

.sct-modal-form input:focus,
.sct-modal-form select:focus,
.sct-modal-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 224, 0.1);
}

.sct-modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.sct-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.sct-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sct-radio input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: var(--primary-color);
}

.sct-radio-label {
    font-weight: 400;
    color: var(--text-color);
}

.sct-error-message {
    display: block;
    color: #e53935;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    min-height: 1rem;
}

.sct-form-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

#resendCodeContainer {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

#countdownTimer {
    margin-right: 0.5rem;
}

.sct-btn-link {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
    margin: 0;
    font-weight: 600;
    box-shadow: none;
    text-decoration: underline;
}

.sct-btn-link:hover {
    color: var(--secondary-color);
    transform: none;
    box-shadow: none;
}

.sct-btn-link:disabled {
    color: var(--text-light);
    cursor: not-allowed;
    text-decoration: none;
}

/* Toast Notification */
.sct-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 2000;
}

.sct-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.sct-toast-content {
    background-color: #4caf50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sct-toast-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.sct-toast-message {
    font-weight: 500;
}

/* Footer Styles */
.sct-footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.sct-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 800 800" fill="none"><circle cx="400" cy="400" r="300" stroke="white" stroke-opacity="0.03" stroke-width="50"/></svg>');
    background-size: 1000px;
    background-position: center right -400px;
    opacity: 0.5;
}

.sct-footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.sct-footer-logo {
    margin-bottom: 1.5rem;
}

.sct-footer-logo .sct-company-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.sct-footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.sct-footer-links {
    display: flex;
    gap: 4rem;
}

.sct-footer-column {
    flex: 1;
    min-width: 160px;
}

.sct-footer-column h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.sct-footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.sct-footer-column ul {
    list-style: none;
}

.sct-footer-column li {
    margin-bottom: 0.8rem;
}

.sct-footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.sct-footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.sct-footer-column address {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sct-footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
}

.sct-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Animation for Scroll Effect */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .sct-careers-title {
        font-size: 3rem;
    }
    
    .sct-section-header h2 {
        font-size: 2.2rem;
    }
    
    .sct-cta-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    h1, .sct-careers-title {
        font-size: 2.6rem;
    }
    
    h2, .sct-section-header h2 {
        font-size: 2rem;
    }
    
    .sct-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .sct-careers-hero {
        padding: 10rem 0 5rem;
        min-height: auto;
    }
    
    .sct-careers-hero .sct-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .sct-careers-hero-content {
        max-width: 100%;
    }
    
    .sct-careers-title:after {
        bottom: -8px;
    }
    
    .sct-careers-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sct-careers-hero-image {
        max-width: 100%;
    }
    
    .sct-careers-culture,
    .sct-open-positions,
    .sct-benefits,
    .sct-cta-section {
        padding: 4rem 0;
    }
    
    .sct-benefits-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .sct-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .sct-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: var(--shadow-md);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .sct-nav.active {
        right: 0;
    }
    
    .sct-nav-links {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .sct-nav-links li {
        width: 100%;
    }
    
    .sct-nav-links a {
        display: block;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .sct-menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .sct-culture-grid,
    .sct-footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sct-footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .sct-section-header {
        margin-bottom: 2rem;
    }
    
    .sct-section-header p {
        font-size: 1.1rem;
    }
    
    .sct-form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 5%;
    }
    
    h1, .sct-careers-title {
        font-size: 2.2rem;
    }
    
    h2, .sct-section-header h2 {
        font-size: 1.8rem;
    }
    
    .sct-careers-description {
        font-size: 1.1rem;
    }
    
    .sct-careers-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .sct-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .sct-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .sct-cta-content p {
        font-size: 1.1rem;
    }
    
    .sct-careers-culture,
    .sct-open-positions,
    .sct-benefits,
    .sct-cta-section {
        padding: 3rem 0;
    }
    
    .sct-footer {
        padding: 3rem 0 0;
    }
    
    .sct-modal-content {
        padding: 2rem 1.5rem;
    }
} 